12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- #ifndef CPPTL_JSON_FEATURES_H_INCLUDED
- #define CPPTL_JSON_FEATURES_H_INCLUDED
- #if !defined(JSON_IS_AMALGAMATION)
- #include "forwards.h"
- #endif
- #pragma pack(push, 8)
- namespace Json {
- class JSON_API Features {
- public:
-
- static Features all();
-
- static Features strictMode();
-
- Features();
-
- bool allowComments_;
-
-
- bool strictRoot_;
-
- bool allowDroppedNullPlaceholders_;
-
- bool allowNumericKeys_;
- };
- }
- #pragma pack(pop)
- #endif
|