summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/vhc/Foo.cc21
-rw-r--r--src/vhc/Foo.h21
-rw-r--r--src/vhc/essai.cc7
-rw-r--r--src/vhctest/Vector3DTest.cc7
4 files changed, 49 insertions, 7 deletions
diff --git a/src/vhc/Foo.cc b/src/vhc/Foo.cc
new file mode 100644
index 0000000..4c93880
--- /dev/null
+++ b/src/vhc/Foo.cc
@@ -0,0 +1,21 @@
+/*
+ * Foo.cc
+ *
+ * Created on: 9 mars 2011
+ * Author: christian
+ */
+
+#include "Foo.h"
+
+namespace vhc {
+
+Foo::Foo() {
+ // TODO Auto-generated constructor stub
+
+}
+
+Foo::~Foo() {
+ // TODO Auto-generated destructor stub
+}
+
+}
diff --git a/src/vhc/Foo.h b/src/vhc/Foo.h
new file mode 100644
index 0000000..77d682b
--- /dev/null
+++ b/src/vhc/Foo.h
@@ -0,0 +1,21 @@
+/*
+ * Foo.h
+ *
+ * Created on: 9 mars 2011
+ * Author: christian
+ */
+
+#ifndef FOO_H_
+#define FOO_H_
+
+namespace vhc {
+
+class Foo {
+public:
+ Foo();
+ virtual ~Foo();
+};
+
+}
+
+#endif /* FOO_H_ */
diff --git a/src/vhc/essai.cc b/src/vhc/essai.cc
new file mode 100644
index 0000000..ce38ce9
--- /dev/null
+++ b/src/vhc/essai.cc
@@ -0,0 +1,7 @@
+/*
+ * essai.cc
+ *
+ * Created on: 9 mars 2011
+ * Author: christian
+ */
+
diff --git a/src/vhctest/Vector3DTest.cc b/src/vhctest/Vector3DTest.cc
index eda1e3f..f203253 100644
--- a/src/vhctest/Vector3DTest.cc
+++ b/src/vhctest/Vector3DTest.cc
@@ -16,13 +16,6 @@
using namespace std;
using namespace vhc;
-/*#define ASSERT(x) \
- if (! (x)) { \
- cout << "ERROR!! Assert " << #x << " failed\n"; \
- cout << " on line " << __LINE__ << "\n"; \
- cout << " in file " << __FILE__ << "\n"; \
- error = true; \
- }*/
bool printTest();