Main Page | Modules | Class Hierarchy | Class List | File List | Class Members | File Members | Related Pages

SLFileList.hpp

00001 // $Id: SLFileList.hpp,v 1.3 2004/04/03 15:07:34 mr_lex Exp $
00002 #ifndef SL_FILE_LIST_HPP
00003 #define SL_FILE_LIST_HPP
00004 
00005 #include <boost/shared_ptr.hpp>
00006 
00007 #include "segusoland.hpp"
00008 #include "SLFile.hpp"
00009 
00010 SL_NAMESPACE_BEGIN
00011 
00036 class SLFileList {
00037 public:
00042     SLFileList(unsigned int initial_capacity);
00043     
00049     const SLFile &operator[](unsigned int index) const;
00050 
00056     void push_back(const SLFile &file);
00057 
00062      unsigned int size() const;
00063 
00069      void sort();
00070      
00071 protected:
00076     class Data;
00077 
00082     boost::shared_ptr<Data> _shared_ptr;
00083 
00087     bool _isSorted;
00088 };
00089 
00090 SL_NAMESPACE_END
00091 #endif // #define SL_FILE_LIST_HPP
00092 
00093 // $Log: SLFileList.hpp,v $
00094 // Revision 1.3  2004/04/03 15:07:34  mr_lex
00095 // NEW: plugin system and toolkit nearly mature
00096 //
00097 // Revision 1.2  2004/04/01 19:05:48  mr_lex
00098 // cosmetic changes
00099 //
00100 // Revision 1.1  2004/04/01 11:09:59  mr_lex
00101 // NEW: 1st import
00102 //
00103 

Generated on Mon Apr 19 01:03:33 2004 for segusoLand by doxygen 1.3.6-20040222