aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Grois <andreas.grois@jku.at>2015-11-03 16:41:15 +0100
committerAndreas Grois <andreas.grois@jku.at>2015-11-03 16:41:15 +0100
commitcd4d403e39e4abbc87a95105e4ebccf737623338 (patch)
treeed7e258bb1ab22911bd72064c6dd1f1c5db86eab
Initial Commit. Still full of bugs, and not very pretty.
-rw-r--r--CMakeLists.txt5
-rw-r--r--LICENSE.txt0
-rw-r--r--README.md0
-rw-r--r--angleclass.cpp5
-rw-r--r--angleclass.h10
-rw-r--r--anglerange.cpp5
-rw-r--r--anglerange.h10
-rw-r--r--main.cpp10
8 files changed, 45 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644
index 0000000..fed0808
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,5 @@
+project(SuperiorLatticeMatch)
+cmake_minimum_required(VERSION 2.8)
+aux_source_directory(. SRC_LIST)
+add_executable(${PROJECT_NAME} ${SRC_LIST})
+
diff --git a/LICENSE.txt b/LICENSE.txt
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/LICENSE.txt
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/README.md
diff --git a/angleclass.cpp b/angleclass.cpp
new file mode 100644
index 0000000..591f810
--- /dev/null
+++ b/angleclass.cpp
@@ -0,0 +1,5 @@
+#include "angleclass.h"
+
+angleclass::angleclass()
+{
+}
diff --git a/angleclass.h b/angleclass.h
new file mode 100644
index 0000000..13a9973
--- /dev/null
+++ b/angleclass.h
@@ -0,0 +1,10 @@
+#ifndef ANGLECLASS_H
+#define ANGLECLASS_H
+
+class angleclass
+{
+public:
+ angleclass();
+};
+
+#endif // ANGLECLASS_H
diff --git a/anglerange.cpp b/anglerange.cpp
new file mode 100644
index 0000000..005f7b7
--- /dev/null
+++ b/anglerange.cpp
@@ -0,0 +1,5 @@
+#include "anglerange.h"
+
+anglerange::anglerange()
+{
+}
diff --git a/anglerange.h b/anglerange.h
new file mode 100644
index 0000000..e4f3053
--- /dev/null
+++ b/anglerange.h
@@ -0,0 +1,10 @@
+#ifndef ANGLERANGE_H
+#define ANGLERANGE_H
+
+class anglerange
+{
+public:
+ anglerange();
+};
+
+#endif // ANGLERANGE_H
diff --git a/main.cpp b/main.cpp
new file mode 100644
index 0000000..5f5419b
--- /dev/null
+++ b/main.cpp
@@ -0,0 +1,10 @@
+#include <iostream>
+
+using namespace std;
+
+int main()
+{
+ cout << "Hello World!" << endl;
+ return 0;
+}
+