OSSIM - Open Source Software Image Map  Version 1.9.0 (20180803)
AtpConfig.h
Go to the documentation of this file.
1 //**************************************************************************************************
2 //
3 // OSSIM Open Source Geospatial Data Processing Library
4 // See top level LICENSE.txt file for license information
5 //
6 //**************************************************************************************************
7 
8 #pragma once
9 
10 #include <ostream>
12 #include <ossim/base/ossimString.h>
13 #include <ossim/init/JsonConfig.h>
14 #include <vector>
15 #include <map>
16 
17 namespace ATP
18 {
25 {
26 public:
28  static AtpConfig& instance();
29 
31  virtual ~AtpConfig();
32 
33  bool readConfig(const std::string& configName="");
34 
35 private:
36  AtpConfig();
37  AtpConfig(const AtpConfig& /*hide_this*/) {}
38 
39 };
40 
41 }
Base class for maintaining parameters affecting the runtime configuration of OSSIM executables...
Definition: JsonConfig.h:64
AtpConfig(const AtpConfig &)
Definition: AtpConfig.h:37
#define OSSIM_PLUGINS_DLL
THESE FUNCTIONS REQUIRE OPENCV.
Singleton class maintaining parameters affecting the automatic tie point generation.
Definition: AtpConfig.h:24