diff options
author | randomdan <randomdan@localhost> | 2012-03-30 20:03:42 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2012-03-30 20:03:42 +0000 |
commit | fdd9af1cd827ee0db846cf234c1dffc324532833 (patch) | |
tree | a74030fcf4b86a178d54a90a5ec49269366aa198 /project2/json/conversion.h | |
parent | Remove lots of specific implementations and replace them with our new generic... (diff) | |
download | project2-fdd9af1cd827ee0db846cf234c1dffc324532833.tar.bz2 project2-fdd9af1cd827ee0db846cf234c1dffc324532833.tar.xz project2-fdd9af1cd827ee0db846cf234c1dffc324532833.zip |
Fix default default value to not always be 'false', there can be no default
Add support for a [proposed] standard JSON-P presenter, inheritting the JSON presenter and adding the padding
Diffstat (limited to 'project2/json/conversion.h')
-rw-r--r-- | project2/json/conversion.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/project2/json/conversion.h b/project2/json/conversion.h index 31bfc8c..d875462 100644 --- a/project2/json/conversion.h +++ b/project2/json/conversion.h @@ -1,3 +1,6 @@ +#ifndef JSON_CONVERSION_H +#define JSON_CONVERSION_H + #include "variables.h" #include "json.h" #include <boost/numeric/conversion/cast.hpp> @@ -25,4 +28,5 @@ class JsonToProject2 : public boost::static_visitor<VariableType> { } }; +#endif |