Răsfoiți Sursa

[add][Refs #9] sources headers

isundil 9 ani în urmă
părinte
comite
d9d20a8024

+ 5 - 0
include/config.h

@@ -1,3 +1,8 @@
+/**
+ * config.h for jsonstroller
+ *
+ * Author: isundil <isundill@gmail.com>
+**/
 
 #ifndef  ERROR_HISTORY_LEN
 # define ERROR_HISTORY_LEN 45

+ 6 - 0
include/curseOutput.hh

@@ -1,3 +1,9 @@
+/**
+ * curseOutput.hh for jsonstroller
+ *
+ * Author: isundil <isundill@gmail.com>
+**/
+
 #pragma once
 
 #include <ncurses.h>

+ 6 - 0
include/jsonArray.hh

@@ -1,3 +1,9 @@
+/**
+ * jsonArray.hh for jsonstroller
+ *
+ * Author: isundil <isundill@gmail.com>
+**/
+
 #pragma once
 
 #include "jsonContainer.hh"

+ 6 - 0
include/jsonContainer.hh

@@ -1,3 +1,9 @@
+/**
+ * jsonContainer.hh for jsonstroller
+ *
+ * Author: isundil <isundill@gmail.com>
+**/
+
 #pragma once
 
 #include <list>

+ 6 - 0
include/jsonElement.hh

@@ -1,3 +1,9 @@
+/**
+ * jsonElement.hh for jsonstroller
+ *
+ * Author: isundil <isundill@gmail.com>
+**/
+
 #pragma once
 
 #include <string>

+ 6 - 0
include/jsonException.hh

@@ -1,3 +1,9 @@
+/**
+ * jsonException.hh for jsonstroller
+ *
+ * Author: isundil <isundill@gmail.com>
+**/
+
 #pragma once
 
 #include <exception>

+ 6 - 0
include/jsonObject.hh

@@ -1,3 +1,9 @@
+/**
+ * jsonObject.hh for jsonstroller
+ *
+ * Author: isundil <isundill@gmail.com>
+**/
+
 #pragma once
 
 #include "config.h"

+ 6 - 0
include/jsonObjectEntry.hh

@@ -1,3 +1,9 @@
+/**
+ * jsonObjectEntry.hh for jsonstroller
+ *
+ * Author: isundil <isundill@gmail.com>
+**/
+
 #pragma once
 
 #include "jsonElement.hh"

+ 6 - 0
include/jsonPrimitive.hh

@@ -1,3 +1,9 @@
+/**
+ * jsonPrimitive.hh for jsonstroller
+ *
+ * Author: isundil <isundill@gmail.com>
+**/
+
 #pragma once
 
 #include "jsonElement.hh"

+ 6 - 0
include/linearHistory.hh

@@ -1,3 +1,9 @@
+/**
+ * linearHistory.hh for jsonstroller
+ *
+ * Author: isundil <isundill@gmail.com>
+**/
+
 #pragma once
 
 #include "config.h"

+ 6 - 0
include/outputFlag.hh

@@ -1,3 +1,9 @@
+/**
+ * outputFlag.hh for jsonstroller
+ *
+ * Author: isundil <isundill@gmail.com>
+**/
+
 #pragma once
 
 class OutputFlag

+ 5 - 0
include/params.hh

@@ -1,3 +1,8 @@
+/**
+ * params.hh for jsonstroller
+ *
+ * Author: isundil <isundill@gmail.com>
+**/
 
 #pragma once
 

+ 6 - 0
include/streamConsumer.hh

@@ -1,3 +1,9 @@
+/**
+ * streamConsumer.hh for jsonstroller
+ *
+ * Author: isundil <isundill@gmail.com>
+**/
+
 #pragma once
 
 #include <istream>

+ 6 - 0
include/warning.hh

@@ -1,3 +1,9 @@
+/**
+ * warning.hh for jsonstroller
+ *
+ * Author: isundil <isundill@gmail.com>
+**/
+
 #pragma once
 
 #include "jsonException.hh"

+ 6 - 0
include/wrappedBuffer.hpp

@@ -1,3 +1,9 @@
+/**
+ * wrappedBuffer.hpp for jsonstroller
+ *
+ * Author: isundil <isundill@gmail.com>
+**/
+
 #pragma once
 
 #include <string.h>

+ 6 - 0
src/curseOutput.cpp

@@ -1,3 +1,9 @@
+/**
+ * curseOutput.cpp for jsonstroller
+ *
+ * Author: isundil <isundill@gmail.com>
+**/
+
 #include <iostream>
 
 #include <sys/ioctl.h>

+ 6 - 0
src/jsonArray.cpp

@@ -1,3 +1,9 @@
+/**
+ * jsonArray.cpp for jsonstroller
+ *
+ * Author: isundil <isundill@gmail.com>
+**/
+
 #include "jsonArray.hh"
 
 JSonArray::JSonArray(JSonContainer *p): JSonContainer(p)

+ 6 - 0
src/jsonContainer.cpp

@@ -1,3 +1,9 @@
+/**
+ * jsonContainer.cpp for jsonstroller
+ *
+ * Author: isundil <isundill@gmail.com>
+**/
+
 #include "jsonContainer.hh"
 
 JSonContainer::JSonContainer(JSonContainer *p):JSonElement(p)

+ 6 - 0
src/jsonElement.cpp

@@ -1,3 +1,9 @@
+/**
+ * jsonElement.cpp for jsonstroller
+ *
+ * Author: isundil <isundill@gmail.com>
+**/
+
 #include "jsonElement.hh"
 #include "jsonContainer.hh"
 #include "jsonObjectEntry.hh"

+ 6 - 0
src/jsonException.cpp

@@ -1,3 +1,9 @@
+/**
+ * jsonException.cpp for jsonstroller
+ *
+ * Author: isundil <isundill@gmail.com>
+**/
+
 #include <string>
 #include "jsonException.hh"
 

+ 6 - 0
src/jsonObject.cpp

@@ -1,3 +1,9 @@
+/**
+ * jsonObject.cpp for jsonstroller
+ *
+ * Author: isundil <isundill@gmail.com>
+**/
+
 #include "jsonObject.hh"
 
 JSonObject::JSonObject(JSonContainer *p): JSonContainer(p)

+ 6 - 0
src/jsonObjectEntry.cpp

@@ -1,3 +1,9 @@
+/**
+ * jsonObjectEntry.cpp for jsonstroller
+ *
+ * Author: isundil <isundill@gmail.com>
+**/
+
 #include "jsonObjectEntry.hh"
 #include "jsonObject.hh"
 

+ 6 - 0
src/jsonPrimitive.cpp

@@ -1,3 +1,9 @@
+/**
+ * jsonPrimitive.cpp for jsonstroller
+ *
+ * Author: isundil <isundill@gmail.com>
+**/
+
 #include "jsonPrimitive.hh"
 
 AJSonPrimitive::~AJSonPrimitive()

+ 6 - 0
src/linearHistory.cpp

@@ -1,3 +1,9 @@
+/**
+ * linearHistory.cpp for jsonstroller
+ *
+ * Author: isundil <isundill@gmail.com>
+**/
+
 #include "linearHistory.hh"
 
 LinearHistory::LinearHistory(): willReset(false), line(1)

+ 6 - 0
src/main.cpp

@@ -1,3 +1,9 @@
+/**
+ * main.cpp for jsonstroller
+ *
+ * Author: isundil <isundill@gmail.com>
+**/
+
 #include <iostream>
 #include <typeinfo>
 #include <locale.h>

+ 6 - 0
src/outputFlag.cpp

@@ -1,3 +1,9 @@
+/**
+ * outputFlag.cpp for jsonstroller
+ *
+ * Author: isundil <isundill@gmail.com>
+**/
+
 #include "outputFlag.hh"
 
 const char OutputFlag::TYPE_UNKNOWN =0;

+ 6 - 0
src/params.cpp

@@ -1,3 +1,9 @@
+/**
+ * params.cpp for jsonstroller
+ *
+ * Author: isundil <isundill@gmail.com>
+**/
+
 #include <fstream>
 #include <iostream>
 #include <sstream>

+ 6 - 0
src/streamConsumer.cpp

@@ -1,3 +1,9 @@
+/**
+ * streamConsumer.cpp for jsonstroller
+ *
+ * Author: isundil <isundill@gmail.com>
+**/
+
 #include <iostream>
 #include <sstream>
 #include "jsonElement.hh"

+ 5 - 0
src/warning.cpp

@@ -1,3 +1,8 @@
+/**
+ * warning.cpp for jsonstroller
+ *
+ * Author: isundil <isundill@gmail.com>
+**/
 
 #include "warning.hh"