diff --git a/chaiscript/chaiscript.hpp b/chaiscript/chaiscript.hpp index e07a0c9..fa039d9 100644 --- a/chaiscript/chaiscript.hpp +++ b/chaiscript/chaiscript.hpp @@ -28,7 +28,7 @@ const char *tokentype_to_string(int tokentype) { return token_types[tokentype]; } -#include "boxedcpp.hpp" +#include "dispatchkit.hpp" #include "bootstrap.hpp" #include "bootstrap_stl.hpp" diff --git a/dispatchkit/bootstrap.hpp b/dispatchkit/bootstrap.hpp index 16b60e7..f67b7e4 100644 --- a/dispatchkit/bootstrap.hpp +++ b/dispatchkit/bootstrap.hpp @@ -1,7 +1,7 @@ #ifndef __bootstrap_hpp #define __bootstrap_hpp__ -#include "boxedcpp.hpp" +#include "dispatchkit.hpp" #include "bootstrap_pod.hpp" template diff --git a/dispatchkit/bootstrap_stl.hpp b/dispatchkit/bootstrap_stl.hpp index 2ae5191..47f1924 100644 --- a/dispatchkit/bootstrap_stl.hpp +++ b/dispatchkit/bootstrap_stl.hpp @@ -1,7 +1,7 @@ #ifndef __bootstrap_stl_hpp #define __bootstrap_stl_hpp__ -#include "boxedcpp.hpp" +#include "dispatchkit.hpp" template void bootstrap_reversible_container(Dispatch_Engine &system, const std::string &type) diff --git a/dispatchkit/boxedcpp.hpp b/dispatchkit/dispatchkit.hpp similarity index 98% rename from dispatchkit/boxedcpp.hpp rename to dispatchkit/dispatchkit.hpp index ff3fa15..645ddf4 100644 --- a/dispatchkit/boxedcpp.hpp +++ b/dispatchkit/dispatchkit.hpp @@ -1,5 +1,5 @@ -#ifndef __boxedcpp_system_hpp__ -#define __boxedcpp_system_hpp__ +#ifndef __dispatchkit_hpp__ +#define __dispatchkit_hpp__ #include #include diff --git a/dispatchkit/register_function.hpp b/dispatchkit/register_function.hpp index 1362f82..62ae4bd 100644 --- a/dispatchkit/register_function.hpp +++ b/dispatchkit/register_function.hpp @@ -4,7 +4,7 @@ #ifndef __register_function_hpp__ #define __register_function_hpp__ -#include +#include "dispatchkit.hpp" #include #include diff --git a/dispatchkit/test.cpp b/dispatchkit/test.cpp index 4da09cd..f8f6d49 100644 --- a/dispatchkit/test.cpp +++ b/dispatchkit/test.cpp @@ -4,7 +4,7 @@ #include #include -#include "boxedcpp.hpp" +#include "dispatchkit.hpp" #include "bootstrap.hpp" #include "bootstrap_stl.hpp" diff --git a/dispatchkit/unittest.cpp b/dispatchkit/unittest.cpp index 958cf61..ef92859 100644 --- a/dispatchkit/unittest.cpp +++ b/dispatchkit/unittest.cpp @@ -1,4 +1,4 @@ -#include "boxedcpp.hpp" +#include "dispatchkit.hpp" #include "bootstrap.hpp" #define BOOST_TEST_DYN_LINK