Fixes build issue for Boxed_Value

This ixes the problem, that one has to include chaiscript.hpp to build
compilation units, which only use Boxed_Value and boxed_cast.
You can now just include boxed_cast.hpp. This decreases build time
significant.
This commit is contained in:
Mario Bielert 2013-07-22 21:24:16 +02:00
parent 1708024372
commit 21e3d1cc0a

View File

@ -7,6 +7,9 @@
#ifndef CHAISCRIPT_DYNAMIC_CAST_CONVERSION_HPP_ #ifndef CHAISCRIPT_DYNAMIC_CAST_CONVERSION_HPP_
#define CHAISCRIPT_DYNAMIC_CAST_CONVERSION_HPP_ #define CHAISCRIPT_DYNAMIC_CAST_CONVERSION_HPP_
#include <memory>
#include <set>
#include "type_info.hpp" #include "type_info.hpp"
#include "boxed_value.hpp" #include "boxed_value.hpp"
#include "boxed_cast_helper.hpp" #include "boxed_cast_helper.hpp"