OSFI-C++  3.10.0
OpenSF Integration Library
UsageReader.h
1 /*
2  * openSF Integration Libraries (OSFI)
3  * Deimos Space, S.L.U.
4  *
5  * This file is part of OSFI. OSFI is free software; you can redistribute it
6  * and/or modify it under the terms of the 'ESA Software Community Licence Permissive' as
7  * published by the European Space Agency; either version 2.4 of the License,
8  * or (at your option) any later version. You should have received a
9  * copy of the 'ESA Software Community Licence Permissive - v2.4' along with this program
10  * or one can be found at <http://eop-cfi.esa.int/index.php/docs-and-mission-data/licensing-documents>.
11  *
12  */
13 
14 #ifndef OSFI_CLP_USAGE_READER
15 #define OSFI_CLP_USAGE_READER
16 
17 #include <string>
18 
24 class UsageReader {
25 public:
31  UsageReader(const std::string& xmlFile);
32 
36  const std::string& getUsage() const {
37  return usage;
38  }
39 
40 private:
44  std::string usage;
45 };
46 
47 #endif /* OSFI_CLP_USAGE_READER */
Definition: UsageReader.h:24
const std::string & getUsage() const
Definition: UsageReader.h:36
UsageReader(const std::string &xmlFile)