summaryrefslogtreecommitdiff
path: root/FacebookRM/JSON_CAJUN/writer.h
diff options
context:
space:
mode:
authorwatcherhd <watcherhd@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb>2012-04-27 17:15:35 +0000
committerwatcherhd <watcherhd@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb>2012-04-27 17:15:35 +0000
commit6d4fb7df596c8f2167088b1bc32d830f088e1eb6 (patch)
tree3b438068f12d3fb8c3c5cc9b1d127869a5434239 /FacebookRM/JSON_CAJUN/writer.h
parent2ec2fe72f5754f59363335f9d5578600022661a1 (diff)
FacebookRM: sources removed, there are on http://robyer.googlecode.com/svn/trunk/facebook
git-svn-id: http://miranda-plugins.googlecode.com/svn/trunk@290 e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb
Diffstat (limited to 'FacebookRM/JSON_CAJUN/writer.h')
-rw-r--r--FacebookRM/JSON_CAJUN/writer.h57
1 files changed, 0 insertions, 57 deletions
diff --git a/FacebookRM/JSON_CAJUN/writer.h b/FacebookRM/JSON_CAJUN/writer.h
deleted file mode 100644
index c364bcb..0000000
--- a/FacebookRM/JSON_CAJUN/writer.h
+++ /dev/null
@@ -1,57 +0,0 @@
-/**********************************************
-
-License: BSD
-Project Webpage: http://cajun-jsonapi.sourceforge.net/
-Author: Terry Caton
-
-***********************************************/
-
-#pragma once
-
-#include "elements.h"
-#include "visitor.h"
-
-namespace json
-{
-
-class Writer : private ConstVisitor
-{
-public:
- static void Write(const Object& object, std::ostream& ostr);
- static void Write(const Array& array, std::ostream& ostr);
- static void Write(const String& string, std::ostream& ostr);
- static void Write(const Number& number, std::ostream& ostr);
- static void Write(const Boolean& boolean, std::ostream& ostr);
- static void Write(const Null& null, std::ostream& ostr);
- static void Write(const UnknownElement& elementRoot, std::ostream& ostr);
-
-private:
- Writer(std::ostream& ostr);
-
- template <typename ElementTypeT>
- static void Write_i(const ElementTypeT& element, std::ostream& ostr);
-
- void Write_i(const Object& object);
- void Write_i(const Array& array);
- void Write_i(const String& string);
- void Write_i(const Number& number);
- void Write_i(const Boolean& boolean);
- void Write_i(const Null& null);
- void Write_i(const UnknownElement& unknown);
-
- virtual void Visit(const Array& array);
- virtual void Visit(const Object& object);
- virtual void Visit(const Number& number);
- virtual void Visit(const String& string);
- virtual void Visit(const Boolean& boolean);
- virtual void Visit(const Null& null);
-
- std::ostream& m_ostr;
- int m_nTabDepth;
-};
-
-
-} // End namespace
-
-
-#include "writer.inl" \ No newline at end of file