OSSIM - Open Source Software Image Map  Version 1.9.0 (20180803)
ossimNitfEmbeddedRpfDes.cpp
Go to the documentation of this file.
1 //*******************************************************************
2 //
3 // License: LGPL
4 //
5 // See LICENSE.txt file in the top level directory for more details.
6 //
7 // Author: Garrett Potts
8 //
9 // Description: Nitf support class
10 //
11 //********************************************************************
12 // $Id: ossimNitfEmbeddedRpfDes.cpp 22013 2012-12-19 17:37:20Z dburken $
13 
14 #include <istream>
15 #include <ostream>
17 
18 
19 RTTI_DEF1(ossimNitfEmbeddedRpfDes, "ossimNitfEmbeddedRpfDes", ossimNitfRegisteredTag)
20 
21 
23  : ossimNitfRegisteredTag(std::string("RPFDES"), 0)
24 {
25 }
26 
28 {
29 }
30 
32 {
33 }
34 
35 std::ostream& ossimNitfEmbeddedRpfDes::print(std::ostream& out, const std::string& /* prefix */)const
36 {
37  return out;
38 }
virtual std::ostream & print(std::ostream &out, const std::string &prefix=std::string()) const
Print method that outputs a key/value type format adding prefix to keys.
virtual void parseStream(std::istream &in)
std::basic_istream< char > istream
Base class for char input streams.
Definition: ossimIosFwd.h:20
#define RTTI_DEF1(cls, name, b1)
Definition: ossimRtti.h:485
std::basic_ostream< char > ostream
Base class for char output streams.
Definition: ossimIosFwd.h:23