From 7b67d3342204c7e2915fd50b0e05280ed713aa5f Mon Sep 17 00:00:00 2001
From: Konstantin Kutscher <kutscher@irmb.tu-bs.de>
Date: Wed, 23 Mar 2016 13:03:46 +0000
Subject: [PATCH]

---
 PythonVirtualFluids/CMakeLists.txt      | 25 ----------------
 PythonVirtualFluids/PySimulation.h      |  0
 PythonVirtualFluids/PyVirtualFluids.cpp | 38 -------------------------
 PythonVirtualFluids/VFtest.py           |  2 --
 4 files changed, 65 deletions(-)
 delete mode 100644 PythonVirtualFluids/CMakeLists.txt
 delete mode 100644 PythonVirtualFluids/PySimulation.h
 delete mode 100644 PythonVirtualFluids/PyVirtualFluids.cpp
 delete mode 100644 PythonVirtualFluids/VFtest.py

diff --git a/PythonVirtualFluids/CMakeLists.txt b/PythonVirtualFluids/CMakeLists.txt
deleted file mode 100644
index 7d6e05959..000000000
--- a/PythonVirtualFluids/CMakeLists.txt
+++ /dev/null
@@ -1,25 +0,0 @@
-CMAKE_MINIMUM_REQUIRED(VERSION 2.8)
-
-########################################################
-## C++ PROJECT                                       ###
-########################################################
-PROJECT(PyVirtualFluids)
-
-INCLUDE(${SOURCE_ROOT}/lib/IncludsList.txt) 
-
-#################################################################
-###   LOCAL FILES                                             ###
-#################################################################
-FILE(GLOB SPECIFIC_FILES ${CMAKE_CURRENT_SOURCE_DIR}/*.h
-                         ${CMAKE_CURRENT_SOURCE_DIR}/*.cpp
-                         ${CMAKE_CURRENT_SOURCE_DIR}/*.hpp  )
- 
-SET(ALL_SOURCES ${ALL_SOURCES} ${SPECIFIC_FILES})
-SOURCE_GROUP(src FILES ${SPECIFIC_FILES})
-  
-SET(CAB_ADDITIONAL_LINK_LIBRARIES vfluids)
-
-#################################################################
-###   CREATE PROJECT                                          ###
-#################################################################
-CREATE_CAB_PROJECT(virtualfluids SHARED)
diff --git a/PythonVirtualFluids/PySimulation.h b/PythonVirtualFluids/PySimulation.h
deleted file mode 100644
index e69de29bb..000000000
diff --git a/PythonVirtualFluids/PyVirtualFluids.cpp b/PythonVirtualFluids/PyVirtualFluids.cpp
deleted file mode 100644
index 23fa9574e..000000000
--- a/PythonVirtualFluids/PyVirtualFluids.cpp
+++ /dev/null
@@ -1,38 +0,0 @@
-#ifdef VF_PYTHON
-
-#include <boost/python.hpp>
-#include "vfluids.h"
-using namespace boost::python;
-
-BOOST_PYTHON_MODULE(virtualfluids)
-{
-   //bool (Configuration::*get1)(const std::string&, std::string&)const = &Configuration::get;
-   //bool (Configuration::*get2)(const std::string&, int&)const = &Configuration::get;
-   //bool (Configuration::*get3)(const std::string&, long&)const = &Configuration::get;
-   //bool (Configuration::*get4)(const std::string&, double&)const = &Configuration::get;
-   //bool (Configuration::*get5)(const std::string&, bool&)const = &Configuration::get;
-   //class_<Configuration>("Configuration")
-
-   //   .def("load", &Configuration::load)
-   //   .def("get", get1)
-   //   .def("get", get2)
-   //   .def("get", get3)
-   //   .def("get", get4)
-   //   .def("get", get5)
-   //   ;
-   class_<Configuration>("Configuration")
-
-      .def("load", &Configuration::load)
-      .def("getString", &Configuration::getString)
-      .def("getInt", &Configuration::getInt)
-      .def("getLong", &Configuration::getLong)
-      .def("getDouble", &Configuration::getDouble)
-      .def("getFloat", &Configuration::getFloat)
-      .def("getBool", &Configuration::getBool)
-      ;
-
-
-
-}
-
-#endif
diff --git a/PythonVirtualFluids/VFtest.py b/PythonVirtualFluids/VFtest.py
deleted file mode 100644
index 2af3ad55e..000000000
--- a/PythonVirtualFluids/VFtest.py
+++ /dev/null
@@ -1,2 +0,0 @@
-import virtualfluids
-config=virtualfluids.load("config.txt")
-- 
GitLab