summaryrefslogtreecommitdiff
path: root/WorldlineKeepers/Assets/Standard Assets/LitJson/IJsonWrapper.cs
diff options
context:
space:
mode:
Diffstat (limited to 'WorldlineKeepers/Assets/Standard Assets/LitJson/IJsonWrapper.cs')
-rw-r--r--WorldlineKeepers/Assets/Standard Assets/LitJson/IJsonWrapper.cs60
1 files changed, 0 insertions, 60 deletions
diff --git a/WorldlineKeepers/Assets/Standard Assets/LitJson/IJsonWrapper.cs b/WorldlineKeepers/Assets/Standard Assets/LitJson/IJsonWrapper.cs
deleted file mode 100644
index 9b7e2d1..0000000
--- a/WorldlineKeepers/Assets/Standard Assets/LitJson/IJsonWrapper.cs
+++ /dev/null
@@ -1,60 +0,0 @@
-#region Header
-/**
- * IJsonWrapper.cs
- * Interface that represents a type capable of handling all kinds of JSON
- * data. This is mainly used when mapping objects through JsonMapper, and
- * it's implemented by JsonData.
- *
- * The authors disclaim copyright to this source code. For more details, see
- * the COPYING file included with this distribution.
- **/
-#endregion
-
-
-using System.Collections;
-using System.Collections.Specialized;
-
-
-namespace LitJson
-{
- public enum JsonType
- {
- None,
-
- Object,
- Array,
- String,
- Int,
- Long,
- Double,
- Boolean
- }
-
- public interface IJsonWrapper : IList, IOrderedDictionary
- {
- bool IsArray { get; }
- bool IsBoolean { get; }
- bool IsDouble { get; }
- bool IsInt { get; }
- bool IsLong { get; }
- bool IsObject { get; }
- bool IsString { get; }
-
- bool GetBoolean ();
- double GetDouble ();
- int GetInt ();
- JsonType GetJsonType ();
- long GetLong ();
- string GetString ();
-
- void SetBoolean (bool val);
- void SetDouble (double val);
- void SetInt (int val);
- void SetJsonType (JsonType type);
- void SetLong (long val);
- void SetString (string val);
-
- string ToJson ();
- void ToJson (JsonWriter writer);
- }
-}