All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
pieceVector.h
Go to the documentation of this file.
1 #ifndef _PIECE_VECTOR_H
2 #define _PIECE_VECTOR_H
3 #include "osl/piece.h"
5 #include <iosfwd>
6 namespace osl
7 {
8  namespace container
9  {
10  class PieceVector : public FixedCapacityVector<Piece,Piece::SIZE>
11  {
12  public:
17  void sortByBasic();
22  void sortByPtype();
23  };
24  std::ostream& operator<<(std::ostream& os,const PieceVector&);
25  } // namespace container
27 } // namespace osl
28 #endif // _PIECE_VECTOR_H
29 // ;;; Local Variables:
30 // ;;; mode:c++
31 // ;;; c-basic-offset:2
32 // ;;; End: