Updated nameing of boxedcpp to dispatchkit

This commit is contained in:
Jason Turner 2009-06-13 22:03:41 +00:00
parent 4edea184de
commit ce52cae45c
7 changed files with 8 additions and 8 deletions

View File

@ -28,7 +28,7 @@ const char *tokentype_to_string(int tokentype) {
return token_types[tokentype]; return token_types[tokentype];
} }
#include "boxedcpp.hpp" #include "dispatchkit.hpp"
#include "bootstrap.hpp" #include "bootstrap.hpp"
#include "bootstrap_stl.hpp" #include "bootstrap_stl.hpp"

View File

@ -1,7 +1,7 @@
#ifndef __bootstrap_hpp #ifndef __bootstrap_hpp
#define __bootstrap_hpp__ #define __bootstrap_hpp__
#include "boxedcpp.hpp" #include "dispatchkit.hpp"
#include "bootstrap_pod.hpp" #include "bootstrap_pod.hpp"
template<typename Ret, typename P1, typename P2> template<typename Ret, typename P1, typename P2>

View File

@ -1,7 +1,7 @@
#ifndef __bootstrap_stl_hpp #ifndef __bootstrap_stl_hpp
#define __bootstrap_stl_hpp__ #define __bootstrap_stl_hpp__
#include "boxedcpp.hpp" #include "dispatchkit.hpp"
template<typename ContainerType> template<typename ContainerType>
void bootstrap_reversible_container(Dispatch_Engine &system, const std::string &type) void bootstrap_reversible_container(Dispatch_Engine &system, const std::string &type)

View File

@ -1,5 +1,5 @@
#ifndef __boxedcpp_system_hpp__ #ifndef __dispatchkit_hpp__
#define __boxedcpp_system_hpp__ #define __dispatchkit_hpp__
#include <typeinfo> #include <typeinfo>
#include <string> #include <string>

View File

@ -4,7 +4,7 @@
#ifndef __register_function_hpp__ #ifndef __register_function_hpp__
#define __register_function_hpp__ #define __register_function_hpp__
#include <boxedcpp.hpp> #include "dispatchkit.hpp"
#include <boost/function.hpp> #include <boost/function.hpp>
#include <boost/bind.hpp> #include <boost/bind.hpp>

View File

@ -4,7 +4,7 @@
#include <boost/shared_ptr.hpp> #include <boost/shared_ptr.hpp>
#include <boost/function.hpp> #include <boost/function.hpp>
#include "boxedcpp.hpp" #include "dispatchkit.hpp"
#include "bootstrap.hpp" #include "bootstrap.hpp"
#include "bootstrap_stl.hpp" #include "bootstrap_stl.hpp"

View File

@ -1,4 +1,4 @@
#include "boxedcpp.hpp" #include "dispatchkit.hpp"
#include "bootstrap.hpp" #include "bootstrap.hpp"
#define BOOST_TEST_DYN_LINK #define BOOST_TEST_DYN_LINK