exact copy of Features
| 1126 | |
| 1127 | // exact copy of Features |
| 1128 | class OurFeatures { |
| 1129 | public: |
| 1130 | static OurFeatures all(); |
| 1131 | bool allowComments_; |
| 1132 | bool strictRoot_; |
| 1133 | bool allowDroppedNullPlaceholders_; |
| 1134 | bool allowNumericKeys_; |
| 1135 | bool allowSingleQuotes_; |
| 1136 | bool failIfExtra_; |
| 1137 | bool rejectDupKeys_; |
| 1138 | bool allowSpecialFloats_; |
| 1139 | int stackLimit_; |
| 1140 | }; // OurFeatures |
| 1141 | |
| 1142 | // exact copy of Implementation of class Features |
| 1143 | // //////////////////////////////// |