My Project
 All Classes Files Functions Variables Enumerations Enumerator Friends Macros Pages
ArrayFrameBuffer.h
Go to the documentation of this file.
1 #ifndef GCP_TRANSLATOR_ARRAYFRAMEBUFFER_H
2 #define GCP_TRANSLATOR_ARRAYFRAMEBUFFER_H
3 
11 #include "gcp/util/common/FrameBuffer.h"
12 #include "gcp/util/common/TimeVal.h"
13 
14 #include "gcp/control/code/unix/libunix_src/common/scanner.h"
15 
16 namespace gcp {
17  namespace util {
18 
20  public:
21 
25  ArrayFrameBuffer(unsigned int nFrame = SCAN_MAX_FRAME,
26  bool archivedOnly=false);
27 
31  virtual ~ArrayFrameBuffer();
32 
33  private:
34 
35  gcp::util::TimeVal timeVal;
36 
37  }; // End class ArrayFrameBuffer
38 
39  } // End namespace util
40 } // End namespace gcp
41 
42 
43 
44 
45 #endif // End #ifndef GCP_TRANSLATOR_ARRAYFRAMEBUFFER_H
ArrayFrameBuffer(unsigned int nFrame=SCAN_MAX_FRAME, bool archivedOnly=false)
Definition: ArrayFrameBuffer.cc:11
Definition: ArrayFrameBuffer.h:19
Definition: TimeVal.h:55
virtual ~ArrayFrameBuffer()
Definition: ArrayFrameBuffer.cc:29
Definition: FrameBuffer.h:21