mirror of
https://github.com/mat007/turtle.git
synced 2026-06-22 12:13:43 +00:00
git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@721 860be788-9bd5-4423-9f1e-828f051e677b
50 lines
1.5 KiB
C++
50 lines
1.5 KiB
C++
// http://turtle.sourceforge.net
|
|
//
|
|
// Copyright Mathieu Champlon 2008
|
|
//
|
|
// 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)
|
|
|
|
#ifndef MOCK_FUNCTION_HPP_INCLUDED
|
|
#define MOCK_FUNCTION_HPP_INCLUDED
|
|
|
|
#include "../config.hpp"
|
|
#include "../error.hpp"
|
|
#include "../log.hpp"
|
|
#include "../constraints.hpp"
|
|
#include "../sequence.hpp"
|
|
#include "../matcher.hpp"
|
|
#include "action.hpp"
|
|
#include "verifiable.hpp"
|
|
#include "invocation.hpp"
|
|
#include "type_name.hpp"
|
|
#include "context.hpp"
|
|
#include <boost/preprocessor/iteration/iterate.hpp>
|
|
#include <boost/preprocessor/repetition/repeat_from_to.hpp>
|
|
#include <boost/preprocessor/repetition/enum_params.hpp>
|
|
#include <boost/preprocessor/repetition/enum_binary_params.hpp>
|
|
#include <boost/preprocessor/comparison/equal.hpp>
|
|
#include <boost/test/utils/basic_cstring/basic_cstring.hpp>
|
|
#include <boost/test/utils/lazy_ostream.hpp>
|
|
#include <boost/enable_shared_from_this.hpp>
|
|
#include <boost/make_shared.hpp>
|
|
#include <boost/call_traits.hpp>
|
|
#include <boost/optional.hpp>
|
|
#include <ostream>
|
|
#include <vector>
|
|
#include <list>
|
|
|
|
#define MOCK_NUM_ARGS 0
|
|
#define MOCK_NUM_ARGS_0
|
|
#include "function_template.hpp"
|
|
#undef MOCK_NUM_ARGS_0
|
|
#undef MOCK_NUM_ARGS
|
|
|
|
#define BOOST_PP_FILENAME_1 <turtle/detail/function_iterate.hpp>
|
|
#define BOOST_PP_ITERATION_LIMITS (1, MOCK_MAX_ARGS)
|
|
#include BOOST_PP_ITERATE()
|
|
#undef BOOST_PP_FILENAME_1
|
|
#undef BOOST_PP_ITERATION_LIMITS
|
|
|
|
#endif // MOCK_FUNCTION_HPP_INCLUDED
|