turtle/src/libraries/turtle/orderable.hpp
mat007 618206f410 Clean-up
git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@71 860be788-9bd5-4423-9f1e-828f051e677b
2009-12-10 23:34:26 +00:00

30 lines
566 B
C++

//
// Copyright Mathieu Champlon 2009
//
// Distributed under the Boost Software License, Version 1.0. (See
// accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
#ifndef MOCK_ORDERABLE_HPP_INCLUDED
#define MOCK_ORDERABLE_HPP_INCLUDED
namespace mock
{
class sequence;
namespace detail
{
class orderable
{
public:
orderable() {}
virtual ~orderable() {}
virtual void remove( sequence& s ) = 0;
};
}
}
#endif // #ifndef MOCK_ORDERABLE_HPP_INCLUDED