Isis 3 Programmer Reference
RadarCamera.h
Go to the documentation of this file.
1 #ifndef RadarCamera_h
2 #define RadarCamera_h
3 
26 #include "Camera.h"
27 
28 namespace Isis {
47  class RadarCamera : public Camera {
48  public:
49  RadarCamera(Cube &cube);
50 
51  virtual CameraType GetCameraType() const {
52  return Radar;
53  }
54 
55  private:
57  RadarCamera(const RadarCamera &);
60  };
61 };
62 
63 #endif
Radar Camera.
Definition: Camera.h:374
RadarCamera & operator=(const RadarCamera &)
Assigning cameras is not allowed.
CameraType
This enum defines the types of cameras supported in this class.
Definition: Camera.h:370
virtual CameraType GetCameraType() const
Returns the type of camera that was created.
Definition: RadarCamera.h:51
RadarCamera(Cube &cube)
Constructs the RadarCamera object.
Definition: RadarCamera.cpp:32
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
Generic class for Radar Cameras.
Definition: RadarCamera.h:47
IO Handler for Isis Cubes.
Definition: Cube.h:170