forked from ossimlabs/ossim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathossimNitfEmbeddedRpfDes.cpp
More file actions
38 lines (30 loc) · 924 Bytes
/
Copy pathossimNitfEmbeddedRpfDes.cpp
File metadata and controls
38 lines (30 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//*******************************************************************
//
// License: LGPL
//
// See LICENSE.txt file in the top level directory for more details.
//
// Author: Garrett Potts
//
// Description: Nitf support class
//
//********************************************************************
// $Id: ossimNitfEmbeddedRpfDes.cpp 22013 2012-12-19 17:37:20Z dburken $
#include <istream>
#include <ostream>
#include <ossim/support_data/ossimNitfEmbeddedRpfDes.h>
RTTI_DEF1(ossimNitfEmbeddedRpfDes, "ossimNitfEmbeddedRpfDes", ossimNitfRegisteredTag)
ossimNitfEmbeddedRpfDes::ossimNitfEmbeddedRpfDes()
: ossimNitfRegisteredTag(std::string("RPFDES"), 0)
{
}
ossimNitfEmbeddedRpfDes::~ossimNitfEmbeddedRpfDes()
{
}
void ossimNitfEmbeddedRpfDes::parseStream(std::istream& /* in */ )
{
}
std::ostream& ossimNitfEmbeddedRpfDes::print(std::ostream& out, const std::string& /* prefix */)const
{
return out;
}