// This file is distributed under the BSD License. // See "license.txt" for details. // Copyright 2009, Jonathan Turner (jturner@minnow-lang.org) // and Jason Turner (lefticus@gmail.com) // http://www.chaiscript.com #include #ifndef BOOST_PP_IS_ITERATING #ifndef __proxy_constructors_hpp__ #define __proxy_constructors_hpp__ #include #include #include #define BOOST_PP_ITERATION_LIMITS ( 0, 10 ) #define BOOST_PP_FILENAME_1 #include BOOST_PP_ITERATE() # endif namespace chaiscript { template Proxy_Function constructor() { T *f; return (build_constructor_(f)); } } #else # define n BOOST_PP_ITERATION() namespace chaiscript { /** * A constructor function, used for creating a new object * of a given type with a given set of params */ template boost::shared_ptr constructor_( BOOST_PP_ENUM_BINARY_PARAMS(n, Param, p) ) { return boost::shared_ptr(new Class( BOOST_PP_ENUM_PARAMS(n, p) )); } /** * Helper function for build a constructor function * example: * dispatchengine.register_function(build_constructor, "MyClass"); * \todo See if it is possible to make this not be a variadic function */ template Proxy_Function build_constructor_(Class (*f)(BOOST_PP_ENUM_PARAMS(n, Param))) { typedef boost::shared_ptr (sig)(BOOST_PP_ENUM_PARAMS(n, Param)); return Proxy_Function(new Proxy_Function_Impl(&(constructor_))); } } #endif