Moved some components into a detail sub-directory

git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@482 860be788-9bd5-4423-9f1e-828f051e677b
This commit is contained in:
mat007 2012-07-22 07:00:51 +00:00
parent 24e618ee8c
commit 3ab7fea2a0
26 changed files with 78 additions and 78 deletions

View file

@ -9,7 +9,7 @@
#ifndef MOCK_ACTION_HPP_INCLUDED
#define MOCK_ACTION_HPP_INCLUDED
#include "detail/lambda.hpp"
#include "lambda.hpp"
#include <boost/type_traits/remove_reference.hpp>
#include <boost/type_traits/remove_const.hpp>
#include <boost/shared_ptr.hpp>

View file

@ -9,9 +9,9 @@
#ifndef MOCK_CHECK_HPP_INCLUDED
#define MOCK_CHECK_HPP_INCLUDED
#include "is_functor.hpp"
#include "operators.hpp"
#include "log.hpp"
#include "../log.hpp"
#include "../is_functor.hpp"
#include <boost/utility/enable_if.hpp>
#include <boost/noncopyable.hpp>
#include <boost/ref.hpp>

View file

@ -9,8 +9,8 @@
#ifndef MOCK_CHILD_HPP_INCLUDED
#define MOCK_CHILD_HPP_INCLUDED
#include "detail/type_name.hpp"
#include "detail/parent.hpp"
#include "type_name.hpp"
#include "parent.hpp"
#include <boost/test/utils/basic_cstring/basic_cstring.hpp>
#include <boost/optional.hpp>
#include <ostream>

View file

@ -9,11 +9,11 @@
#ifndef MOCK_CLEANUP_HPP_INCLUDED
#define MOCK_CLEANUP_HPP_INCLUDED
#include "config.hpp"
#include "../config.hpp"
#ifdef MOCK_USE_BOOST_TEST
#include "detail/root.hpp"
#include "root.hpp"
#include <boost/test/unit_test_suite.hpp>
namespace mock

View file

@ -9,7 +9,7 @@
#ifndef MOCK_CONTEXT_HPP_INCLUDED
#define MOCK_CONTEXT_HPP_INCLUDED
#include "detail/type_name.hpp"
#include "type_name.hpp"
#include <boost/noncopyable.hpp>
#include <boost/optional.hpp>
#include <boost/test/utils/basic_cstring/basic_cstring.hpp>

View file

@ -10,7 +10,7 @@
#define MOCK_EXPECTATION_BASE_HPP_INCLUDED
#include "invocation.hpp"
#include "sequence.hpp"
#include "../sequence.hpp"
#include <boost/shared_ptr.hpp>
#include <vector>

View file

@ -9,18 +9,18 @@
#ifndef MOCK_FUNCTION_HPP_INCLUDED
#define MOCK_FUNCTION_HPP_INCLUDED
#include "config.hpp"
#include "error.hpp"
#include "log.hpp"
#include "../config.hpp"
#include "../error.hpp"
#include "../log.hpp"
#include "../constraints.hpp"
#include "../sequence.hpp"
#include "check.hpp"
#include "action.hpp"
#include "verifiable.hpp"
#include "type_name.hpp"
#include "context.hpp"
#include "invocation.hpp"
#include "constraints.hpp"
#include "sequence.hpp"
#include "expectation_base.hpp"
#include "detail/verifiable.hpp"
#include "detail/type_name.hpp"
#include "detail/context.hpp"
#include <boost/preprocessor/repetition/repeat_from_to.hpp>
#include <boost/preprocessor/repetition/enum_params.hpp>
#include <boost/preprocessor/repetition/enum_binary_params.hpp>

View file

@ -9,7 +9,7 @@
#ifndef MOCK_GROUP_HPP_INCLUDED
#define MOCK_GROUP_HPP_INCLUDED
#include "detail/verifiable.hpp"
#include "verifiable.hpp"
#include <functional>
#include <algorithm>
#include <vector>

View file

@ -9,8 +9,8 @@
#ifndef MOCK_OPERATORS_HPP_INCLUDED
#define MOCK_OPERATORS_HPP_INCLUDED
#include "constraint.hpp"
#include "log.hpp"
#include "../constraint.hpp"
#include "../log.hpp"
namespace mock
{

View file

@ -9,7 +9,7 @@
#ifndef MOCK_PARENT_HPP_INCLUDED
#define MOCK_PARENT_HPP_INCLUDED
#include "detail/type_name.hpp"
#include "type_name.hpp"
#include <boost/optional.hpp>
#include <boost/test/utils/basic_cstring/io.hpp>
#include <ostream>

View file

@ -9,10 +9,10 @@
#ifndef MOCK_ROOT_HPP_INCLUDED
#define MOCK_ROOT_HPP_INCLUDED
#include "detail/parent.hpp"
#include "detail/group.hpp"
#include "detail/context.hpp"
#include "detail/child.hpp"
#include "parent.hpp"
#include "group.hpp"
#include "context.hpp"
#include "child.hpp"
#include <boost/test/utils/trivial_singleton.hpp>
#include <ostream>
#include <map>

View file

@ -10,12 +10,12 @@
#define MOCK_MOCK_HPP_INCLUDED
#include "config.hpp"
#include "cleanup.hpp"
#include "object.hpp"
#include "function.hpp"
#include "detail/function.hpp"
#include "detail/type_name.hpp"
#include "detail/parameters.hpp"
#include "detail/signature.hpp"
#include "detail/cleanup.hpp"
#include <boost/preprocessor/repetition/repeat.hpp>
#include <boost/preprocessor/stringize.hpp>