Skip to content

Instantly share code, notes, and snippets.

@squix78
Last active April 30, 2018 09:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save squix78/d596212f2e9b5e6ef14f970ffff81f1d to your computer and use it in GitHub Desktop.
Save squix78/d596212f2e9b5e6ef14f970ffff81f1d to your computer and use it in GitHub Desktop.
class JsonListener {
public:
virtual void whitespace(char c) = 0;
virtual void startDocument() = 0;
virtual void key(String key) = 0;
virtual void value(String value) = 0;
virtual void endArray() = 0;
virtual void endObject() = 0;
virtual void endDocument() = 0;
virtual void startArray() = 0;
virtual void startObject() = 0;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment