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 {
46  class FramingCamera : public Camera {
47  public:
48  FramingCamera(Cube &cube);
51 
57  virtual CameraType GetCameraType() const {
58  return Framing;
59  }
60  virtual std::pair<iTime, iTime> ShutterOpenCloseTimes(double time,
61  double exposureDuration) = 0;
62  private:
66  FramingCamera &operator=(const FramingCamera &);
67  };
68 };
69 
70 #endif