mirror of
https://github.com/mat007/turtle.git
synced 2026-06-22 12:13:43 +00:00
Moved some components into a detail sub-directory
git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@500 860be788-9bd5-4423-9f1e-828f051e677b
This commit is contained in:
parent
188b684d23
commit
4694fb6263
8 changed files with 12 additions and 12 deletions
|
|
@ -96,7 +96,7 @@
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="reports" description="generate code analysis reports">
|
<target name="reports" description="generate code analysis reports">
|
||||||
<headers name="turtle" excludes="*_iterate.hpp,*_template.hpp"/>
|
<headers name="turtle" excludes="**/*_iterate.hpp,**/*_template.hpp"/>
|
||||||
<check name="turtle"/>
|
<check name="turtle"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -37,6 +37,7 @@
|
||||||
<ClInclude Include="..\..\turtle\detail\function_template.hpp" />
|
<ClInclude Include="..\..\turtle\detail\function_template.hpp" />
|
||||||
<ClInclude Include="..\..\turtle\detail\group.hpp" />
|
<ClInclude Include="..\..\turtle\detail\group.hpp" />
|
||||||
<ClInclude Include="..\..\turtle\detail\invocation.hpp" />
|
<ClInclude Include="..\..\turtle\detail\invocation.hpp" />
|
||||||
|
<ClInclude Include="..\..\turtle\detail\is_functor.hpp" />
|
||||||
<ClInclude Include="..\..\turtle\detail\lambda.hpp" />
|
<ClInclude Include="..\..\turtle\detail\lambda.hpp" />
|
||||||
<ClInclude Include="..\..\turtle\detail\object_impl.hpp" />
|
<ClInclude Include="..\..\turtle\detail\object_impl.hpp" />
|
||||||
<ClInclude Include="..\..\turtle\detail\operators.hpp" />
|
<ClInclude Include="..\..\turtle\detail\operators.hpp" />
|
||||||
|
|
@ -48,7 +49,6 @@
|
||||||
<ClInclude Include="..\..\turtle\detail\verifiable.hpp" />
|
<ClInclude Include="..\..\turtle\detail\verifiable.hpp" />
|
||||||
<ClInclude Include="..\..\turtle\detail\yes_no_type.hpp" />
|
<ClInclude Include="..\..\turtle\detail\yes_no_type.hpp" />
|
||||||
<ClInclude Include="..\..\turtle\error.hpp" />
|
<ClInclude Include="..\..\turtle\error.hpp" />
|
||||||
<ClInclude Include="..\..\turtle\is_functor.hpp" />
|
|
||||||
<ClInclude Include="..\..\turtle\log.hpp" />
|
<ClInclude Include="..\..\turtle\log.hpp" />
|
||||||
<ClInclude Include="..\..\turtle\mock.hpp" />
|
<ClInclude Include="..\..\turtle\mock.hpp" />
|
||||||
<ClInclude Include="..\..\turtle\object.hpp" />
|
<ClInclude Include="..\..\turtle\object.hpp" />
|
||||||
|
|
|
||||||
|
|
@ -25,9 +25,6 @@
|
||||||
<ClInclude Include="..\..\turtle\error.hpp">
|
<ClInclude Include="..\..\turtle\error.hpp">
|
||||||
<Filter>Source Files</Filter>
|
<Filter>Source Files</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
<ClInclude Include="..\..\turtle\is_functor.hpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="..\..\turtle\log.hpp">
|
<ClInclude Include="..\..\turtle\log.hpp">
|
||||||
<Filter>Source Files</Filter>
|
<Filter>Source Files</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
|
@ -112,5 +109,8 @@
|
||||||
<ClInclude Include="..\..\turtle\detail\function_impl_template.hpp">
|
<ClInclude Include="..\..\turtle\detail\function_impl_template.hpp">
|
||||||
<Filter>Source Files\detail</Filter>
|
<Filter>Source Files\detail</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\..\turtle\detail\is_functor.hpp">
|
||||||
|
<Filter>Source Files\detail</Filter>
|
||||||
|
</ClInclude>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
@ -24,13 +24,13 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="..\..\test\detail\test_function.cpp" />
|
<ClCompile Include="..\..\test\detail\test_function.cpp" />
|
||||||
<ClCompile Include="..\..\test\detail\test_invocation.cpp" />
|
<ClCompile Include="..\..\test\detail\test_invocation.cpp" />
|
||||||
|
<ClCompile Include="..\..\test\detail\test_is_functor.cpp" />
|
||||||
<ClCompile Include="..\..\test\detail\test_parameters.cpp" />
|
<ClCompile Include="..\..\test\detail\test_parameters.cpp" />
|
||||||
<ClCompile Include="..\..\test\detail\test_signature.cpp" />
|
<ClCompile Include="..\..\test\detail\test_signature.cpp" />
|
||||||
<ClCompile Include="..\..\test\detail\test_type_name.cpp" />
|
<ClCompile Include="..\..\test\detail\test_type_name.cpp" />
|
||||||
<ClCompile Include="..\..\test\test_constraints.cpp" />
|
<ClCompile Include="..\..\test\test_constraints.cpp" />
|
||||||
<ClCompile Include="..\..\test\test_error.cpp" />
|
<ClCompile Include="..\..\test\test_error.cpp" />
|
||||||
<ClCompile Include="..\..\test\test_integration.cpp" />
|
<ClCompile Include="..\..\test\test_integration.cpp" />
|
||||||
<ClCompile Include="..\..\test\test_is_functor.cpp" />
|
|
||||||
<ClCompile Include="..\..\test\test_log.cpp" />
|
<ClCompile Include="..\..\test\test_log.cpp" />
|
||||||
<ClCompile Include="..\..\test\test_max_args.cpp" />
|
<ClCompile Include="..\..\test\test_max_args.cpp" />
|
||||||
<ClCompile Include="..\..\test\test_mock.cpp" />
|
<ClCompile Include="..\..\test\test_mock.cpp" />
|
||||||
|
|
|
||||||
|
|
@ -24,9 +24,6 @@
|
||||||
<ClCompile Include="..\..\test\test_integration.cpp">
|
<ClCompile Include="..\..\test\test_integration.cpp">
|
||||||
<Filter>Source Files</Filter>
|
<Filter>Source Files</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\test\test_is_functor.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\test\test_log.cpp">
|
<ClCompile Include="..\..\test\test_log.cpp">
|
||||||
<Filter>Source Files</Filter>
|
<Filter>Source Files</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
|
@ -57,5 +54,8 @@
|
||||||
<ClCompile Include="..\..\test\detail\test_invocation.cpp">
|
<ClCompile Include="..\..\test\detail\test_invocation.cpp">
|
||||||
<Filter>Source Files\detail</Filter>
|
<Filter>Source Files\detail</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\test\detail\test_is_functor.cpp">
|
||||||
|
<Filter>Source Files\detail</Filter>
|
||||||
|
</ClCompile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
// (See accompanying file LICENSE_1_0.txt or copy at
|
// (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
// http://www.boost.org/LICENSE_1_0.txt)
|
// http://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
|
||||||
#include <turtle/is_functor.hpp>
|
#include <turtle/detail/is_functor.hpp>
|
||||||
#include <boost/test/auto_unit_test.hpp>
|
#include <boost/test/auto_unit_test.hpp>
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
#pragma warning( push, 0 )
|
#pragma warning( push, 0 )
|
||||||
|
|
@ -10,8 +10,8 @@
|
||||||
#define MOCK_CHECK_HPP_INCLUDED
|
#define MOCK_CHECK_HPP_INCLUDED
|
||||||
|
|
||||||
#include "operators.hpp"
|
#include "operators.hpp"
|
||||||
|
#include "is_functor.hpp"
|
||||||
#include "../log.hpp"
|
#include "../log.hpp"
|
||||||
#include "../is_functor.hpp"
|
|
||||||
#include <boost/utility/enable_if.hpp>
|
#include <boost/utility/enable_if.hpp>
|
||||||
#include <boost/noncopyable.hpp>
|
#include <boost/noncopyable.hpp>
|
||||||
#include <boost/ref.hpp>
|
#include <boost/ref.hpp>
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@
|
||||||
#ifndef MOCK_IS_FUNCTOR_HPP_INCLUDED
|
#ifndef MOCK_IS_FUNCTOR_HPP_INCLUDED
|
||||||
#define MOCK_IS_FUNCTOR_HPP_INCLUDED
|
#define MOCK_IS_FUNCTOR_HPP_INCLUDED
|
||||||
|
|
||||||
#include "detail/yes_no_type.hpp"
|
#include "yes_no_type.hpp"
|
||||||
#include <boost/function_types/is_callable_builtin.hpp>
|
#include <boost/function_types/is_callable_builtin.hpp>
|
||||||
#include <boost/mpl/bool.hpp>
|
#include <boost/mpl/bool.hpp>
|
||||||
#include <boost/mpl/or.hpp>
|
#include <boost/mpl/or.hpp>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue