diff --git a/CMakeLists.txt b/CMakeLists.txt index 501f464..661e75c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,6 +11,6 @@ SET (CMAKE_CXX_FLAGS_GDB " -Wall -ggdb") include_directories(boxedcpp) add_subdirectory(langkit bin) -add_subdirectory(boxedcpp bin) +add_subdirectory(dispatchkit bin) add_subdirectory(wesley bin) \ No newline at end of file diff --git a/boxedcpp/CMakeLists.txt b/dispatch_engine/CMakeLists.txt similarity index 100% rename from boxedcpp/CMakeLists.txt rename to dispatch_engine/CMakeLists.txt diff --git a/boxedcpp/bootstrap.hpp b/dispatch_engine/bootstrap.hpp similarity index 100% rename from boxedcpp/bootstrap.hpp rename to dispatch_engine/bootstrap.hpp diff --git a/boxedcpp/bootstrap_stl.hpp b/dispatch_engine/bootstrap_stl.hpp similarity index 100% rename from boxedcpp/bootstrap_stl.hpp rename to dispatch_engine/bootstrap_stl.hpp diff --git a/boxedcpp/boxed_value.hpp b/dispatch_engine/boxed_value.hpp similarity index 100% rename from boxedcpp/boxed_value.hpp rename to dispatch_engine/boxed_value.hpp diff --git a/boxedcpp/boxedcpp.hpp b/dispatch_engine/boxedcpp.hpp similarity index 100% rename from boxedcpp/boxedcpp.hpp rename to dispatch_engine/boxedcpp.hpp diff --git a/boxedcpp/proxy_constructors.hpp b/dispatch_engine/proxy_constructors.hpp similarity index 100% rename from boxedcpp/proxy_constructors.hpp rename to dispatch_engine/proxy_constructors.hpp diff --git a/boxedcpp/proxy_functions.hpp b/dispatch_engine/proxy_functions.hpp similarity index 100% rename from boxedcpp/proxy_functions.hpp rename to dispatch_engine/proxy_functions.hpp diff --git a/boxedcpp/register_function.hpp b/dispatch_engine/register_function.hpp similarity index 100% rename from boxedcpp/register_function.hpp rename to dispatch_engine/register_function.hpp diff --git a/boxedcpp/test.cpp b/dispatch_engine/test.cpp similarity index 100% rename from boxedcpp/test.cpp rename to dispatch_engine/test.cpp diff --git a/boxedcpp/type_info.hpp b/dispatch_engine/type_info.hpp similarity index 100% rename from boxedcpp/type_info.hpp rename to dispatch_engine/type_info.hpp diff --git a/boxedcpp/unittest.cpp b/dispatch_engine/unittest.cpp similarity index 100% rename from boxedcpp/unittest.cpp rename to dispatch_engine/unittest.cpp