00001
00002
00003 #ifndef SCTPIXELROD_RODOUTLIST_H
00004 #define SCTPIXELROD_RODOUTLIST_H
00005
00006 #include <string>
00007
00008 namespace SctPixelRod {
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 class RodOutList
00021 {
00022 public:
00023 RodOutList( long length ) ;
00024 RodOutList( const RodOutList& );
00025 ~RodOutList();
00026 RodOutList& operator=( const RodOutList& );
00027
00028
00029 long getLength() const { return m_length; }
00030
00031
00032 unsigned long* getBody() const {return m_body; }
00033
00034 private:
00035
00036 long m_length;
00037
00038 unsigned long* m_body;
00039
00040 };
00041 }
00042
00043 #endif // SCTPIXELROD_RODOUTLIST_H