All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
moveVector.h
Go to the documentation of this file.
1 #ifndef _MOVE_VECTOR_H
2 #define _MOVE_VECTOR_H
3 #include "osl/move.h"
5 #include <iosfwd>
6 namespace osl
7 {
8  namespace container
9  {
10  class MoveVector : public FixedCapacityVector<Move,Move::MaxUniqMoves>
11  {
12  public:
13  };
14  std::ostream& operator<<(std::ostream& os,MoveVector const& mv);
15  bool operator<(const MoveVector& l, const MoveVector& r);
16  } // namespace container
18 } // namespace osl
19 #endif // _MOVE_VECTOR_H
20 // ;;; Local Variables:
21 // ;;; mode:c++
22 // ;;; c-basic-offset:2
23 // ;;; End: