USGS

Isis 3.0 Object Programmers' Reference

Home

ControlNetFileV0002.h
Go to the documentation of this file.
1 #ifndef ControlNetFileV0002_h
2 #define ControlNetFileV0002_h
3 
26 #include "ControlNetFile.h"
27 
28 template <typename A> class QList;
29 
30 namespace Isis {
31  class ControlNetFileHeaderV0002;
32  class ControlPointFileEntryV0002;
33  class FileName;
34 
60  public:
62  virtual ~ControlNetFileV0002();
63 
64  virtual void Read(const Pvl &header, const FileName &file);
65  virtual void Write(const FileName &file) const;
66  virtual Pvl toPvl() const;
67 
76  return *p_networkHeader;
77  }
78 
83  return *p_controlPoints;
84  }
85 
86  private:
89 
92  };
93 }
94 
95 #endif