From e76604bf1efe7bb05d0b4c17c7ed00b6a261bbc7 Mon Sep 17 00:00:00 2001 From: treecity Date: Thu, 20 Oct 2011 17:14:45 +0000 Subject: [PATCH] [src] delete NET git-svn-id: https://drops.fb12.tu-berlin.de/svn/bacc/trunk@53 26120e32-c555-405d-b3e1-1f783fb42516 --- src/net/Point.cpp | 28 ---------------------------- src/net/Point.h | 26 -------------------------- src/net/int.cpp | 10 ---------- src/net/int.hpp | 18 ------------------ 4 files changed, 82 deletions(-) delete mode 100644 src/net/Point.cpp delete mode 100644 src/net/Point.h delete mode 100644 src/net/int.cpp delete mode 100644 src/net/int.hpp diff --git a/src/net/Point.cpp b/src/net/Point.cpp deleted file mode 100644 index b3c7641..0000000 --- a/src/net/Point.cpp +++ /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 index daf454f..0000000 --- a/src/net/Point.h +++ /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 index 65c549b..0000000 --- a/src/net/int.cpp +++ /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 index 044601e..0000000 --- a/src/net/int.hpp +++ /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 - -class INT { - - -}; - -#endif -- 2.47.3