Free Electron
JsonValue.h
Go to the documentation of this file.
1 /* Copyright (C) 2003-2021 Free Electron Organization
2  Any use of this software requires a license. If a valid license
3  was not distributed with this file, visit freeelectron.org. */
4 
5 /** @file */
6 
7 #ifndef __json_JsonValue_h__
8 #define __json_JsonValue_h__
9 
10 namespace fe
11 {
12 namespace ext
13 {
14 
15 /**************************************************************************//**
16  @brief Json::Value wrapped for sp<>
17 
18  @ingroup json
19 *//***************************************************************************/
20 class FE_DL_EXPORT JsonValue: public Component
21 {
22  public:
23  Json::Value& value(void) { return m_jsonValue; }
24 
25  private:
26  Json::Value m_jsonValue;
27 };
28 
29 } /* namespace ext */
30 } /* namespace fe */
31 
32 #endif /* __json_JsonValue_h__ */
kernel
Definition: namespace.dox:3
Represents a JSON value.
Definition: value.h:194
Base for all interfacable components.
Definition: Component.h:20
Json::Value wrapped for sp<>
Definition: JsonValue.h:20