Files
squeezelite-esp32/components/spotify/cspot/bell/include/JSONObject.h
2022-03-04 20:06:19 -08:00

36 lines
667 B
C++

#ifndef JSONOBJECT_H
#define JSONOBJECT_H
#include <cJSON.h>
#include <string>
#include <cstring>
#include <vector>
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();
std::vector<uint8_t> toVector();
private:
cJSON* body;
};
}
#endif