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