USGS

Isis 3.0 Developer's Reference (API)

Home

FramingCamera.h
Go to the documentation of this file.
1 #ifndef FramingCamera_h
2 #define FramingCamera_h
3 
26 #include "Camera.h"
27 
28 namespace Isis {
48  class FramingCamera : public Camera {
49  public:
50  FramingCamera(Cube &cube);
53 
59  virtual CameraType GetCameraType() const {
60  return Framing;
61  }
62  virtual std::pair<iTime, iTime> ShutterOpenCloseTimes(double time,
63  double exposureDuration) = 0;
64  private:
68  FramingCamera &operator=(const FramingCamera &);
69  };
70 };
71 
72 #endif