+++ /dev/null
-/*
- * 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){
-
-}
+++ /dev/null
-/*
- * 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_ */
+++ /dev/null
-/*
- * int.cpp
- *
- * Created on: 05.04.2011
- * Author: P. Schaefer
- */
-
-#include "int.hpp"
-
-
+++ /dev/null
-/*
- * int.hpp
- *
- * Created on: 05.04.2011
- * Author: P. Schaefer
- */
-
-#ifndef PSCH_INT_GUARD_
-#define PSCH_INT_GUARD_
-
-#include <cmath>
-
-class INT {
-
-
-};
-
-#endif