Normalize on include guard style, removing __ reserved words
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
#ifndef __chaiscript_threading_hpp__
|
#ifndef CHAISCRIPT_THREADING_HPP_
|
||||||
#define __chaiscript_threading_hpp__
|
#define CHAISCRIPT_THREADING_HPP_
|
||||||
|
|
||||||
#ifndef CHAISCRIPT_NO_THREADS
|
#ifndef CHAISCRIPT_NO_THREADS
|
||||||
#include <boost/thread.hpp>
|
#include <boost/thread.hpp>
|
||||||
|
@@ -4,8 +4,8 @@
|
|||||||
// and Jason Turner (jason@emptycrate.com)
|
// and Jason Turner (jason@emptycrate.com)
|
||||||
// http://www.chaiscript.com
|
// http://www.chaiscript.com
|
||||||
|
|
||||||
#ifndef __bad_boxed_cast_hpp__
|
#ifndef CHAISCRIPT_BAD_BOXED_CAST_HPP_
|
||||||
#define __bad_boxed_cast_hpp__
|
#define CHAISCRIPT_BAD_BOXED_CAST_HPP_
|
||||||
|
|
||||||
#include "type_info.hpp"
|
#include "type_info.hpp"
|
||||||
|
|
||||||
|
@@ -10,8 +10,8 @@
|
|||||||
#define param(z,n,text) BOOST_PP_CAT(text, BOOST_PP_INC(n))
|
#define param(z,n,text) BOOST_PP_CAT(text, BOOST_PP_INC(n))
|
||||||
|
|
||||||
#ifndef BOOST_PP_IS_ITERATING
|
#ifndef BOOST_PP_IS_ITERATING
|
||||||
#ifndef __bind_first_hpp__
|
#ifndef CHAISCRIPT_BIND_FIRST_HPP_
|
||||||
#define __bind_first_hpp__
|
#define CHAISCRIPT_BIND_FIRST_HPP_
|
||||||
|
|
||||||
#include <boost/function.hpp>
|
#include <boost/function.hpp>
|
||||||
#include <boost/bind.hpp>
|
#include <boost/bind.hpp>
|
||||||
|
@@ -4,8 +4,8 @@
|
|||||||
// and Jason Turner (jason@emptycrate.com)
|
// and Jason Turner (jason@emptycrate.com)
|
||||||
// http://www.chaiscript.com
|
// http://www.chaiscript.com
|
||||||
|
|
||||||
#ifndef __bootstrap_hpp
|
#ifndef CHAISCRIPT_BOOTSTRAP_HPP_
|
||||||
#define __bootstrap_hpp__
|
#define CHAISCRIPT_BOOTSTRAP_HPP_
|
||||||
|
|
||||||
#include "dispatchkit.hpp"
|
#include "dispatchkit.hpp"
|
||||||
#include "dynamic_object.hpp"
|
#include "dynamic_object.hpp"
|
||||||
|
@@ -10,8 +10,8 @@
|
|||||||
* http://www.sgi.com/tech/stl/table_of_contents.html
|
* http://www.sgi.com/tech/stl/table_of_contents.html
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __bootstrap_stl_hpp__
|
#ifndef CHAISCRIPT_BOOTSTRAP_STL_HPP_
|
||||||
#define __bootstrap_stl_hpp__
|
#define CHAISCRIPT_BOOTSTRAP_STL_HPP_
|
||||||
|
|
||||||
#include "dispatchkit.hpp"
|
#include "dispatchkit.hpp"
|
||||||
#include "register_function.hpp"
|
#include "register_function.hpp"
|
||||||
|
@@ -4,8 +4,8 @@
|
|||||||
// and Jason Turner (jason@emptycrate.com)
|
// and Jason Turner (jason@emptycrate.com)
|
||||||
// http://www.chaiscript.com
|
// http://www.chaiscript.com
|
||||||
|
|
||||||
#ifndef __boxed_cast_helper_hpp__
|
#ifndef CHAISCRIPT_BOXED_CAST_HELPER_HPP_
|
||||||
#define __boxed_cast_helper_hpp__
|
#define CHAISCRIPT_BOXED_CAST_HELPER_HPP_
|
||||||
|
|
||||||
#include "type_info.hpp"
|
#include "type_info.hpp"
|
||||||
#include "boxed_value.hpp"
|
#include "boxed_value.hpp"
|
||||||
|
@@ -4,8 +4,8 @@
|
|||||||
// and Jason Turner (jason@emptycrate.com)
|
// and Jason Turner (jason@emptycrate.com)
|
||||||
// http://www.chaiscript.com
|
// http://www.chaiscript.com
|
||||||
|
|
||||||
#ifndef __boxed_pod_value_hpp__
|
#ifndef CHAISCRIPT_BOXED_POD_VALUE_HPP_
|
||||||
#define __boxed_pod_value_hpp__
|
#define CHAISCRIPT_BOXED_POD_VALUE_HPP_
|
||||||
|
|
||||||
#include "type_info.hpp"
|
#include "type_info.hpp"
|
||||||
#include "boxed_value.hpp"
|
#include "boxed_value.hpp"
|
||||||
|
@@ -4,8 +4,8 @@
|
|||||||
// and Jason Turner (jason@emptycrate.com)
|
// and Jason Turner (jason@emptycrate.com)
|
||||||
// http://www.chaiscript.com
|
// http://www.chaiscript.com
|
||||||
|
|
||||||
#ifndef __boxed_value_hpp__
|
#ifndef CHAISCRIPT_BOXED_VALUE_HPP_
|
||||||
#define __boxed_value_hpp__
|
#define CHAISCRIPT_BOXED_VALUE_HPP_
|
||||||
|
|
||||||
#include "type_info.hpp"
|
#include "type_info.hpp"
|
||||||
|
|
||||||
|
@@ -4,8 +4,8 @@
|
|||||||
// and Jason Turner (jason@emptycrate.com)
|
// and Jason Turner (jason@emptycrate.com)
|
||||||
// http://www.chaiscript.com
|
// http://www.chaiscript.com
|
||||||
|
|
||||||
#ifndef __dispatchkit_hpp__
|
#ifndef CHAISCRIPT_DISPATCHKIT_HPP_
|
||||||
#define __dispatchkit_hpp__
|
#define CHAISCRIPT_DISPATCHKIT_HPP_
|
||||||
|
|
||||||
#include <typeinfo>
|
#include <typeinfo>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
#ifndef __chaiscriptdispatchkit_dynamic_cast_conversion_hpp__
|
#ifndef CHAISCRIPT_DYNAMIC_CAST_CONVERSION_HPP_
|
||||||
#define __chaiscriptdispatchkit_dynamic_cast_conversion_hpp__
|
#define CHAISCRIPT_DYNAMIC_CAST_CONVERSION_HPP_
|
||||||
|
|
||||||
#include "type_info.hpp"
|
#include "type_info.hpp"
|
||||||
#include "boxed_value.hpp"
|
#include "boxed_value.hpp"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
#ifndef __DYNAMIC_OBJECT_HPP__
|
#ifndef CHAISCRIPT_DYNAMIC_OBJECT_HPP_
|
||||||
#define __DYNAMIC_OBJECT_HPP__
|
#define CHAISCRIPT_DYNAMIC_OBJECT_HPP_
|
||||||
|
|
||||||
#include <boost/optional.hpp>
|
#include <boost/optional.hpp>
|
||||||
|
|
||||||
|
@@ -11,8 +11,8 @@
|
|||||||
|
|
||||||
|
|
||||||
#ifndef BOOST_PP_IS_ITERATING
|
#ifndef BOOST_PP_IS_ITERATING
|
||||||
#ifndef __function_call_detail_hpp__
|
#ifndef CHAISCRIPT_FUNCTION_CALL_DETAIL_HPP_
|
||||||
#define __function_call_detail_hpp__
|
#define CHAISCRIPT_FUNCTION_CALL_DETAIL_HPP_
|
||||||
|
|
||||||
#include <boost/shared_ptr.hpp>
|
#include <boost/shared_ptr.hpp>
|
||||||
#include <boost/bind.hpp>
|
#include <boost/bind.hpp>
|
||||||
|
@@ -4,8 +4,8 @@
|
|||||||
// and Jason Turner (jason@emptycrate.com)
|
// and Jason Turner (jason@emptycrate.com)
|
||||||
// http://www.chaiscript.com
|
// http://www.chaiscript.com
|
||||||
|
|
||||||
#ifndef __handle_return_hpp__
|
#ifndef CHAISCRIPT_HANDLE_RETURN_HPP_
|
||||||
#define __handle_return_hpp__
|
#define CHAISCRIPT_HANDLE_RETURN_HPP_
|
||||||
|
|
||||||
#include "boxed_value.hpp"
|
#include "boxed_value.hpp"
|
||||||
#include "type_info.hpp"
|
#include "type_info.hpp"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
#ifndef __CHAISCRIPT_OPERATORS_HPP__
|
#ifndef CHAISCRIPT_OPERATORS_HPP_
|
||||||
#define __CHAISCRIPT_OPERATORS_HPP__
|
#define CHAISCRIPT_OPERATORS_HPP_
|
||||||
|
|
||||||
namespace chaiscript
|
namespace chaiscript
|
||||||
{
|
{
|
||||||
|
@@ -7,8 +7,8 @@
|
|||||||
#include <boost/preprocessor.hpp>
|
#include <boost/preprocessor.hpp>
|
||||||
|
|
||||||
#ifndef BOOST_PP_IS_ITERATING
|
#ifndef BOOST_PP_IS_ITERATING
|
||||||
#ifndef __proxy_constructors_hpp__
|
#ifndef CHAISCRIPT_PROXY_CONSTRUCTORS_HPP_
|
||||||
#define __proxy_constructors_hpp__
|
#define CHAISCRIPT_PROXY_CONSTRUCTORS_HPP_
|
||||||
|
|
||||||
#include <boost/shared_ptr.hpp>
|
#include <boost/shared_ptr.hpp>
|
||||||
#include <boost/bind.hpp>
|
#include <boost/bind.hpp>
|
||||||
|
@@ -5,8 +5,8 @@
|
|||||||
// http://www.chaiscript.com
|
// http://www.chaiscript.com
|
||||||
|
|
||||||
|
|
||||||
#ifndef __proxy_functions_hpp__
|
#ifndef CHAISCRIPT_PROXY_FUNCTIONS_HPP_
|
||||||
#define __proxy_functions_hpp__
|
#define CHAISCRIPT_PROXY_FUNCTIONS_HPP_
|
||||||
|
|
||||||
|
|
||||||
#include "boxed_value.hpp"
|
#include "boxed_value.hpp"
|
||||||
|
@@ -11,8 +11,8 @@
|
|||||||
#define trycast(z,n,text) chaiscript::boxed_cast<Param ## n>(params[n]);
|
#define trycast(z,n,text) chaiscript::boxed_cast<Param ## n>(params[n]);
|
||||||
|
|
||||||
#ifndef BOOST_PP_IS_ITERATING
|
#ifndef BOOST_PP_IS_ITERATING
|
||||||
#ifndef __proxy_functions_detail_hpp__
|
#ifndef CHAISCRIPT_PROXY_FUNCTIONS_DETAIL_HPP_
|
||||||
#define __proxy_functions_detail_hpp__
|
#define CHAISCRIPT_PROXY_FUNCTIONS_DETAIL_HPP_
|
||||||
|
|
||||||
#include "boxed_value.hpp"
|
#include "boxed_value.hpp"
|
||||||
#include "boxed_cast.hpp"
|
#include "boxed_cast.hpp"
|
||||||
|
@@ -4,8 +4,8 @@
|
|||||||
// and Jason Turner (jason@emptycrate.com)
|
// and Jason Turner (jason@emptycrate.com)
|
||||||
// http://www.chaiscript.com
|
// http://www.chaiscript.com
|
||||||
|
|
||||||
#ifndef __register_function_hpp__
|
#ifndef CHAISCRIPT_REGISTER_FUNCTION_HPP_
|
||||||
#define __register_function_hpp__
|
#define CHAISCRIPT_REGISTER_FUNCTION_HPP_
|
||||||
|
|
||||||
#include "dispatchkit.hpp"
|
#include "dispatchkit.hpp"
|
||||||
#include "bind_first.hpp"
|
#include "bind_first.hpp"
|
||||||
|
@@ -4,8 +4,8 @@
|
|||||||
// and Jason Turner (jason@emptycrate.com)
|
// and Jason Turner (jason@emptycrate.com)
|
||||||
// http://www.chaiscript.com
|
// http://www.chaiscript.com
|
||||||
|
|
||||||
#ifndef __type_info_hpp__
|
#ifndef CHAISCRIPT_TYPE_INFO_HPP_
|
||||||
#define __type_info_hpp__
|
#define CHAISCRIPT_TYPE_INFO_HPP_
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <typeinfo>
|
#include <typeinfo>
|
||||||
|
@@ -4,8 +4,8 @@
|
|||||||
// and Jason Turner (jason@emptycrate.com)
|
// and Jason Turner (jason@emptycrate.com)
|
||||||
// http://www.chaiscript.com
|
// http://www.chaiscript.com
|
||||||
|
|
||||||
#ifndef _CHAISCRIPT_COMMON_HPP
|
#ifndef CHAISCRIPT_COMMON_HPP_
|
||||||
#define _CHAISCRIPT_COMMON_HPP
|
#define CHAISCRIPT_COMMON_HPP_
|
||||||
|
|
||||||
#include <chaiscript/dispatchkit/dispatchkit.hpp>
|
#include <chaiscript/dispatchkit/dispatchkit.hpp>
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user