1.00.3
C++ Standard Airline IT Object Library
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
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
stdair::JSONString::JSONString
JSONString()
Definition:
stdair_json.hpp:26
stdair
Handle on the StdAir library context.
Definition:
BasChronometer.cpp:9
stdair::JSONString::getString
const std::string & getString() const
Definition:
stdair_json.hpp:36
stdair::JSONString::~JSONString
virtual ~JSONString()
Definition:
stdair_json.hpp:31
stdair::JSONString
JSON-formatted string.
Definition:
stdair_json.hpp:16
stdair::JSONString::_jsonString
std::string _jsonString
Definition:
stdair_json.hpp:44
stdair::JSONString::JSONString
JSONString(const std::string &iJsonString)
Definition:
stdair_json.hpp:21
Generated for StdAir by
1.8.9.1