OSSIM - Open Source Software Image Map  Version 1.9.0 (20180803)
ErsSarRecord.cpp
Go to the documentation of this file.
1 //----------------------------------------------------------------------------
2 //
3 // "Copyright Centre National d'Etudes Spatiales"
4 //
5 // License: LGPL
6 //
7 // See LICENSE.txt file in the top level directory for more details.
8 //
9 //----------------------------------------------------------------------------
10 // $Id$
11 
12 #include "erssar/ErsSarRecord.h"
13 #include <memory.h>
14 
15 namespace ossimplugins
16 {
17 
18 ErsSarRecord::ErsSarRecord(std::string mnemonic):
19  _mnemonic(mnemonic)
20 {
21 }
22 
24 {
25 }
26 
28  _mnemonic(rhs._mnemonic)
29 {
30 }
31 }
ErsSarRecord(std::string mnemonic)
Constructor.
virtual ~ErsSarRecord()
Destructor.
This class is the base class of all the record classes.
Definition: ErsSarRecord.h:27