JSDOC/Options.js
[gnome.introspection-doc-generator] / JSDOC / Options.js
index e69de29..b665f4a 100644 (file)
@@ -0,0 +1,41 @@
+//<script type="text/javascript">
+/**
+ * Options management...
+ */
+
+
+Options = {
+    
+    
+    "directory" : '',
+    "conf" : '',
+    "template": '',
+    "recurse": '',
+    "ext": '',
+    "private": '',
+    "allfunctions": '', 
+    "encoding": '',
+    "nocode": '',
+    "out": '',
+    "suppress": '',
+    "testmode": '',
+    "help": '',
+    "verbose": '',
+    "disablecache": '',
+    "define" : [],
+    "handler" : [],
+    LOG : {
+        warn : function(str) {
+            print("Warn: " +str );
+        },
+        inform : function(str) {
+            print("Inform: " +str );
+        },
+        close : function() { },
+        flush : function() { },
+        out: false,
+        warnings : [],
+        verbose : false    
+    }
+    
+}
\ No newline at end of file