diff --git a/PythonVirtualFluids/CMakeLists.txt b/PythonVirtualFluids/CMakeLists.txt deleted file mode 100644 index 7d6e0595950c8a4a14c51e33b43970b1a1f2d97c..0000000000000000000000000000000000000000 --- 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 e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/PythonVirtualFluids/PyVirtualFluids.cpp b/PythonVirtualFluids/PyVirtualFluids.cpp deleted file mode 100644 index 23fa9574e85881a663fa76cf38dc1e4bf30c9f5b..0000000000000000000000000000000000000000 --- 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 2af3ad55ebb358d842a1bee3b7c29253bf0ca642..0000000000000000000000000000000000000000 --- a/PythonVirtualFluids/VFtest.py +++ /dev/null @@ -1,2 +0,0 @@ -import virtualfluids -config=virtualfluids.load("config.txt")