]> git.leopard-lacewing.eu Git - bacc.git/commitdiff
[src] delete NET
authortreecity <treecity@26120e32-c555-405d-b3e1-1f783fb42516>
Thu, 20 Oct 2011 17:14:45 +0000 (17:14 +0000)
committertreecity <treecity@26120e32-c555-405d-b3e1-1f783fb42516>
Thu, 20 Oct 2011 17:14:45 +0000 (17:14 +0000)
git-svn-id: https://drops.fb12.tu-berlin.de/svn/bacc/trunk@53 26120e32-c555-405d-b3e1-1f783fb42516

src/net/Point.cpp [deleted file]
src/net/Point.h [deleted file]
src/net/int.cpp [deleted file]
src/net/int.hpp [deleted file]

diff --git a/src/net/Point.cpp b/src/net/Point.cpp
deleted file mode 100644 (file)
index b3c7641..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * Point.cpp
- *
- *  Created on: 15.09.2011
- *      Author: treecity
- */
-
-#include "Point.h"
-
-Point::Point() {
-
-}
-
-Point::~Point() {
-       // TODO Auto-generated destructor stub
-}
-
-
-double Point::operator [](unsigned short pos){
-       if(pos<3)
-               return coo[pos];
-       else
-               return NaN;
-}
-
-Point Point::operator +(Point a){
-
-}
diff --git a/src/net/Point.h b/src/net/Point.h
deleted file mode 100644 (file)
index daf454f..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * Point.h
- *
- *  Created on: 15.09.2011
- *      Author: treecity
- */
-
-#ifndef POINT_H_
-#define POINT_H_
-
-class Point {
-public:
-       Point();
-       virtual ~Point();
-
-       Point operator +(Point const) const;
-       Point operator -(Point const) const;
-       Point operator -() const;
-
-       double operator [](unsigned short const) const;
-
-protected:
-       double coo[3];
-};
-
-#endif /* POINT_H_ */
diff --git a/src/net/int.cpp b/src/net/int.cpp
deleted file mode 100644 (file)
index 65c549b..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-/*
- * int.cpp
- *
- *  Created on: 05.04.2011
- *      Author: P. Schaefer
- */
-
-#include "int.hpp"
-
-
diff --git a/src/net/int.hpp b/src/net/int.hpp
deleted file mode 100644 (file)
index 044601e..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-/*
- * int.hpp
- *
- *  Created on: 05.04.2011
- *      Author: P. Schaefer
- */
-
-#ifndef PSCH_INT_GUARD_
-#define PSCH_INT_GUARD_
-
-#include <cmath>
-
-class INT {
-
-
-};
-
-#endif