Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Data Structures | File List | Namespace Members | Data Fields | Related Pages

RodOutList.h

00001 // File: RodOutList.h
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     // These shouldn't be used so make them private
00023     RodOutList& operator=( const RodOutList& );         // Overload = operator
00024     RodOutList( const RodOutList& );                    // Copy constructor
00025 public:
00026     RodOutList( long length ) ;                         // Constructor
00027     ~RodOutList();                                      // Destructor
00028 
00029     // Accessor function to get length
00030     long getLength() const { return m_length; }
00031     
00032     // Accessor function to get pointer to data body.
00033     unsigned long* getBody() const {return m_body; }
00034 
00035 private:
00037     long m_length;
00039     unsigned long* m_body;
00040 
00041 };                                    // End of RodOutList declaration
00042 } // End namespace SctPixelRod
00043 
00044 #endif  // SCTPIXELROD_RODOUTLIST_H

Generated on Thu Jul 15 09:50:51 2004 for SCT DAQ/DCS Software - C++ by doxygen 1.3.5