Click here to Skip to main content
15,886,745 members
Articles / Programming Languages / C++

Using Interfaces for Object Oriented Primitives

Rate me:
Please Sign up or sign in to vote.
4.65/5 (11 votes)
7 Dec 20047 min read 57.4K   369   27  
An introduction to the OOTL (Object Oriented Template Library). Describes how the OOTL uses a bleeding-edge technique of defining interface types in C++ to provide lightweight object-oriented primitives with run-time polymorphism through an IObject interface.
// (C) Copyright Jonathan Turkanis 2004.
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.)

// Disclaimer: Not a Boost library.

#ifndef BOOST_IDL_DETAIL_PARAM_NAME_HPP_INCLUDED
#define BOOST_IDL_DETAIL_PARAM_NAME_HPP_INCLUDED

#if defined(_MSC_VER) && (_MSC_VER >= 1020)
# pragma once
#endif

#include <boost/interfaces/detail/config/has_named_params.hpp>
#include <boost/preprocessor/control/iif.hpp>
#include <boost/preprocessor/tuple/elem.hpp>

#ifndef BOOST_IDL_UNNAMED_PARAM
# define BOOST_IDL_UNNAMED_PARAM [unspecified]
#endif

//
// Macro: BOOST_IDL_PARAM_NAME(arg)
// Parameters:
//     arg - a tuple (type, name) if HAS_NAMED_PARAMS() is true,
//           and a typename type otherwise.
// Expands to: name if HAS_NAMED_PARAMS() is true and 
//     BOOST_IDL_UNNAMED_PARAM otherwise.
//
#define BOOST_IDL_PARAM_NAME(arg) \
    BOOST_PP_IIF( BOOST_IDL_HAS_NAMED_PARAMS(), \
                  BOOST_PP_TUPLE_ELEM(2, 1, arg), \
                  BOOST_IDL_UNNAMED_PARAM ) \
    /**/

#endif // #ifndef BOOST_IDL_DETAIL_PARAM_NAME_HPP_INCLUDED

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer Ara 3D
Canada Canada
I am the designer of the Plato programming language and I am the founder of Ara 3D. I can be reached via email at cdiggins@gmail.com

Comments and Discussions