| 12345678910111213141516171819202122 |
- //
- // properties.hpp
- // logger
- //
- // Created by Sam Jaffe on 10/3/15.
- //
- //
- #pragma once
- #include <map>
- #include <string>
- #include <vector>
- namespace logging {
- struct properties {
- const enum { STRING, OBJECT, ARRAY } type;
- const std::map<std::string, properties> obj;
- const std::vector<properties> array;
- const std::string value;
- };
- }
|