Apply corrections from the "include what you use" tool

Generally cleanups of the includes. Making sure each file
can properly stand on its own and forward declares when possible.
This commit is contained in:
Jason Turner
2014-05-10 18:41:11 -06:00
parent f29af4618a
commit c0bf6ee99d
25 changed files with 310 additions and 62 deletions

View File

@@ -7,8 +7,18 @@
#ifndef CHAISCRIPT_EXCEPTION_SPECIFICATION_HPP_
#define CHAISCRIPT_EXCEPTION_SPECIFICATION_HPP_
#include <memory>
#include "../chaiscript_defines.hpp"
#include "boxed_cast.hpp"
namespace chaiscript {
class Boxed_Value;
namespace exception {
class bad_boxed_cast;
} // namespace exception
} // namespace chaiscript
namespace chaiscript
{
namespace detail