| OLD | NEW |
| 1 // Copyright 2007-2010 Baptiste Lepilleur | 1 // Copyright 2007-2010 Baptiste Lepilleur |
| 2 // Distributed under MIT license, or public domain if desired and | 2 // Distributed under MIT license, or public domain if desired and |
| 3 // recognized in your jurisdiction. | 3 // recognized in your jurisdiction. |
| 4 // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE | 4 // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE |
| 5 | 5 |
| 6 #ifndef CPPTL_JSON_H_INCLUDED | 6 #ifndef CPPTL_JSON_H_INCLUDED |
| 7 # define CPPTL_JSON_H_INCLUDED | 7 # define CPPTL_JSON_H_INCLUDED |
| 8 | 8 |
| 9 #if !defined(JSON_IS_AMALGAMATION) | 9 #if !defined(JSON_IS_AMALGAMATION) |
| 10 # include "json/forwards.h" | 10 # include "third_party/jsoncpp/source/include/json/forwards.h" |
| 11 #endif // if !defined(JSON_IS_AMALGAMATION) | 11 #endif // if !defined(JSON_IS_AMALGAMATION) |
| 12 # include <string> | 12 # include <string> |
| 13 # include <vector> | 13 # include <vector> |
| 14 | 14 |
| 15 # ifndef JSON_USE_CPPTL_SMALLMAP | 15 # ifndef JSON_USE_CPPTL_SMALLMAP |
| 16 # include <map> | 16 # include <map> |
| 17 # else | 17 # else |
| 18 # include <cpptl/smallmap.h> | 18 # include <cpptl/smallmap.h> |
| 19 # endif | 19 # endif |
| 20 # ifdef JSON_USE_CPPTL | 20 # ifdef JSON_USE_CPPTL |
| (...skipping 1079 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1100 { | 1100 { |
| 1101 return deref(); | 1101 return deref(); |
| 1102 } | 1102 } |
| 1103 }; | 1103 }; |
| 1104 | 1104 |
| 1105 | 1105 |
| 1106 } // namespace Json | 1106 } // namespace Json |
| 1107 | 1107 |
| 1108 | 1108 |
| 1109 #endif // CPPTL_JSON_H_INCLUDED | 1109 #endif // CPPTL_JSON_H_INCLUDED |
| OLD | NEW |