10Duke Scale C++ Client
Loading...
Searching...
No Matches
JSONString.h
1#ifndef TENDUKE_JSON_JSONSTRING_H
2#define TENDUKE_JSON_JSONSTRING_H
3
4#include "./JSONElement.h"
5
6#include <string>
7
8namespace tenduke { namespace json {
9
13class JSONString : virtual public JSONElement
14{
15public:
16 ~JSONString() override = default;
17
22 virtual std::string getValue() const = 0;
23};
24
25}}
26
27#endif // TENDUKE_JSON_JSONSTRING_H
Superclass of JSON elements.
Definition JSONElement.h:12
JSON string element.
Definition JSONString.h:14
virtual std::string getValue() const =0
Returns the value of this string.
JSON support.
Definition JSONArray.h:10
Root for classes, functions and globals of 10Duke C++ Client.
Definition BackendConfiguration.h:7