mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-08 20:47:08 +03:00
big merge
This commit is contained in:
33
components/spotify/cspot/bell/include/JSONObject.h
Normal file
33
components/spotify/cspot/bell/include/JSONObject.h
Normal file
@@ -0,0 +1,33 @@
|
||||
#ifndef JSONOBJECT_H
|
||||
#define JSONOBJECT_H
|
||||
#include <cJSON.h>
|
||||
#include <string>
|
||||
|
||||
namespace bell {
|
||||
class JSONValue
|
||||
{
|
||||
public:
|
||||
JSONValue(cJSON* body, std::string key);
|
||||
void operator=(const std::string val);
|
||||
void operator=(const char* val);
|
||||
void operator=(int val);
|
||||
|
||||
private:
|
||||
cJSON* body;
|
||||
std::string key;
|
||||
};
|
||||
|
||||
class JSONObject
|
||||
{
|
||||
public:
|
||||
JSONObject();
|
||||
~JSONObject();
|
||||
JSONValue operator[](std::string index);
|
||||
std::string toString();
|
||||
|
||||
private:
|
||||
cJSON* body;
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user