@@ -1,3 +1,8 @@
+/**
+ * config.h for jsonstroller
+ *
+ * Author: isundil <isundill@gmail.com>
+**/
#ifndef ERROR_HISTORY_LEN
# define ERROR_HISTORY_LEN 45
@@ -1,3 +1,9 @@
+ * curseOutput.hh for jsonstroller
+
#pragma once
#include <ncurses.h>
+ * jsonArray.hh for jsonstroller
#include "jsonContainer.hh"
+ * jsonContainer.hh for jsonstroller
#include <list>
+ * jsonElement.hh for jsonstroller
#include <string>
+ * jsonException.hh for jsonstroller
#include <exception>
+ * jsonObject.hh for jsonstroller
#include "config.h"
+ * jsonObjectEntry.hh for jsonstroller
#include "jsonElement.hh"
+ * jsonPrimitive.hh for jsonstroller
+ * linearHistory.hh for jsonstroller
+ * outputFlag.hh for jsonstroller
class OutputFlag
+ * params.hh for jsonstroller
+ * streamConsumer.hh for jsonstroller
#include <istream>
+ * warning.hh for jsonstroller
#include "jsonException.hh"
+ * wrappedBuffer.hpp for jsonstroller
#include <string.h>
+ * curseOutput.cpp for jsonstroller
#include <iostream>
#include <sys/ioctl.h>
+ * jsonArray.cpp for jsonstroller
#include "jsonArray.hh"
JSonArray::JSonArray(JSonContainer *p): JSonContainer(p)
+ * jsonContainer.cpp for jsonstroller
JSonContainer::JSonContainer(JSonContainer *p):JSonElement(p)
+ * jsonElement.cpp for jsonstroller
#include "jsonObjectEntry.hh"
+ * jsonException.cpp for jsonstroller
+ * jsonObject.cpp for jsonstroller
#include "jsonObject.hh"
JSonObject::JSonObject(JSonContainer *p): JSonContainer(p)
+ * jsonObjectEntry.cpp for jsonstroller
+ * jsonPrimitive.cpp for jsonstroller
#include "jsonPrimitive.hh"
AJSonPrimitive::~AJSonPrimitive()
+ * linearHistory.cpp for jsonstroller
#include "linearHistory.hh"
LinearHistory::LinearHistory(): willReset(false), line(1)
+ * main.cpp for jsonstroller
#include <typeinfo>
#include <locale.h>
+ * outputFlag.cpp for jsonstroller
#include "outputFlag.hh"
const char OutputFlag::TYPE_UNKNOWN =0;
+ * params.cpp for jsonstroller
#include <fstream>
#include <sstream>
+ * streamConsumer.cpp for jsonstroller
+ * warning.cpp for jsonstroller
#include "warning.hh"