From e56c9f586e59da44cd67292021ee3e76a02c8404 Mon Sep 17 00:00:00 2001 From: mat007 Date: Sun, 22 Jul 2012 07:01:49 +0000 Subject: [PATCH] Moved some components into a detail sub-directory git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@484 860be788-9bd5-4423-9f1e-828f051e677b --- build/vc100/turtle.vcxproj | 2 +- build/vc100/turtle.vcxproj.filters | 4 ++-- turtle/{ => detail}/object_impl.hpp | 0 turtle/object.hpp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) rename turtle/{ => detail}/object_impl.hpp (100%) diff --git a/build/vc100/turtle.vcxproj b/build/vc100/turtle.vcxproj index c358010..bb4c605 100644 --- a/build/vc100/turtle.vcxproj +++ b/build/vc100/turtle.vcxproj @@ -37,6 +37,7 @@ + @@ -50,7 +51,6 @@ - diff --git a/build/vc100/turtle.vcxproj.filters b/build/vc100/turtle.vcxproj.filters index 13e2769..a628ba1 100644 --- a/build/vc100/turtle.vcxproj.filters +++ b/build/vc100/turtle.vcxproj.filters @@ -106,8 +106,8 @@ Source Files\detail - - Source Files + + Source Files\detail \ No newline at end of file diff --git a/turtle/object_impl.hpp b/turtle/detail/object_impl.hpp similarity index 100% rename from turtle/object_impl.hpp rename to turtle/detail/object_impl.hpp diff --git a/turtle/object.hpp b/turtle/object.hpp index 11180b9..769137a 100644 --- a/turtle/object.hpp +++ b/turtle/object.hpp @@ -9,9 +9,9 @@ #ifndef MOCK_OBJECT_HPP_INCLUDED #define MOCK_OBJECT_HPP_INCLUDED -#include "object_impl.hpp" #include "detail/root.hpp" #include "detail/type_name.hpp" +#include "detail/object_impl.hpp" #include #include #include