1.00.0
C++ Standard Airline IT Object Library
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
stdair_json.hpp
Go to the documentation of this file.
1
#ifndef __STDAIR_STDAIR_JSON_HPP
2
#define __STDAIR_STDAIR_JSON_HPP
3
4
// //////////////////////////////////////////////////////////////////////
5
// Import section
6
// //////////////////////////////////////////////////////////////////////
7
// STL
8
#include <string>
9
10
namespace
stdair {
11
16
class
JSONString
{
17
public
:
21
explicit
JSONString
(
const
std::string& iJsonString) :
22
_jsonString
(iJsonString) {}
26
explicit
JSONString
() :
_jsonString
(
""
) {}
27
31
virtual
~JSONString
() {}
32
36
const
std::string&
getString
()
const
{
37
return
_jsonString
;
38
}
39
40
protected
:
44
std::string
_jsonString
;
45
};
46
47
}
48
#endif // __STDAIR_STDAIR_JSON_HPP
Generated on Sat Dec 22 2012 16:51:54 for StdAir by
1.8.1.1