Changeset 9098f9 for src/Patterns
- Timestamp:
- Dec 22, 2010, 10:32:46 AM (15 years ago)
- Children:
- 70672e3
- Parents:
- 115378
- Location:
- src/Patterns
- Files:
-
- 12 edited
-
Cacheable.hpp (modified) (1 diff)
-
ObservedContainer.hpp (modified) (1 diff)
-
ObservedContainer_impl.hpp (modified) (1 diff)
-
ObservedIterator.hpp (modified) (1 diff)
-
Observer.cpp (modified) (2 diffs)
-
Registry_impl.hpp (modified) (1 diff)
-
Singleton.hpp (modified) (2 diffs)
-
Singleton_impl.hpp (modified) (1 diff)
-
unittests/CacheableUnitTest.cpp (modified) (1 diff)
-
unittests/Makefile.am (modified) (1 diff)
-
unittests/ObserverUnitTest.cpp (modified) (1 diff)
-
unittests/SingletonUnitTest.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Patterns/Cacheable.hpp
r115378 r9098f9 9 9 #define CACHEABLE_HPP_ 10 10 11 #include " Patterns/Observer.hpp"11 #include "Observer.hpp" 12 12 #include <boost/function.hpp> 13 13 #include <boost/shared_ptr.hpp> 14 14 15 #include " Helpers/Assert.hpp"15 #include "Assert.hpp" 16 16 17 17 #ifndef NO_CACHING -
src/Patterns/ObservedContainer.hpp
r115378 r9098f9 12 12 13 13 #include <utility> 14 #include " Patterns/ObservedIterator.hpp"14 #include "ObservedIterator.hpp" 15 15 #include "Descriptors/SelectiveIterator.hpp" 16 16 -
src/Patterns/ObservedContainer_impl.hpp
r115378 r9098f9 9 9 #define OBSERVEDCONTAINER_IMPL_HPP_ 10 10 11 #include " Patterns/ObservedContainer.hpp"11 #include "ObservedContainer.hpp" 12 12 13 13 template <class Container> -
src/Patterns/ObservedIterator.hpp
r115378 r9098f9 9 9 #define OBSERVEDITERATOR_HPP_ 10 10 11 #include " Patterns/Observer.hpp"11 #include "Observer.hpp" 12 12 13 13 #include <iterator> -
src/Patterns/Observer.cpp
r115378 r9098f9 18 18 #endif 19 19 20 #include " Helpers/MemDebug.hpp"20 #include "MemDebug.hpp" 21 21 22 22 #include "Observer.hpp" … … 24 24 #include <iostream> 25 25 26 #include " Helpers/Assert.hpp"27 #include " Helpers/MemDebug.hpp"26 #include "Assert.hpp" 27 #include "MemDebug.hpp" 28 28 29 29 using namespace std; -
src/Patterns/Registry_impl.hpp
r115378 r9098f9 9 9 #define REGISTRY_IMPL_HPP_ 10 10 11 #include " Helpers/MemDebug.hpp"11 #include "MemDebug.hpp" 12 12 13 #include " Patterns/Registry.hpp"14 #include " Patterns/Singleton_impl.hpp"13 #include "Registry.hpp" 14 #include "Singleton_impl.hpp" 15 15 16 #include " Helpers/Assert.hpp"16 #include "Assert.hpp" 17 17 #include <iostream> 18 18 -
src/Patterns/Singleton.hpp
r115378 r9098f9 11 11 #include <boost/thread.hpp> 12 12 13 #include " Helpers/Assert.hpp"13 #include "Assert.hpp" 14 14 15 15 /** … … 104 104 * @endcode 105 105 * 106 * - include the file " Patterns/Singleton_impl.hpp" that carries the implementation details of106 * - include the file "Singleton_impl.hpp" that carries the implementation details of 107 107 * the singleton functions in your implementation file of the class. 108 108 * - make the compiler construct the template instantiations. For this you can use the defined -
src/Patterns/Singleton_impl.hpp
r115378 r9098f9 9 9 #define SINGLETON_IMPL_HPP_ 10 10 11 #include " Helpers/Assert.hpp"12 #include " Patterns/Singleton.hpp"11 #include "Assert.hpp" 12 #include "Singleton.hpp" 13 13 14 14 /****** Static instance Variables of the template *******/ -
src/Patterns/unittests/CacheableUnitTest.cpp
r115378 r9098f9 26 26 #include <boost/bind.hpp> 27 27 28 #include " Patterns/Cacheable.hpp"28 #include "Cacheable.hpp" 29 29 30 30 #ifdef HAVE_TESTRUNNER -
src/Patterns/unittests/Makefile.am
r115378 r9098f9 2 2 # Also indentation by a single tab 3 3 4 INCLUDES = -I$(top_srcdir)/src 4 INCLUDES = -I$(top_srcdir)/src/Patterns -I$(top_srcdir)/src/Helpers 5 5 6 6 AM_LDFLAGS = $(CPPUNIT_LIBS) -ldl -
src/Patterns/unittests/ObserverUnitTest.cpp
r115378 r9098f9 23 23 #include <set> 24 24 25 #include " Patterns/Observer.hpp"26 #include " Patterns/ObservedIterator.hpp"27 #include " Helpers/Assert.hpp"25 #include "Observer.hpp" 26 #include "ObservedIterator.hpp" 27 #include "Assert.hpp" 28 28 29 29 #include <iostream> -
src/Patterns/unittests/SingletonUnitTest.cpp
r115378 r9098f9 25 25 #include <iostream> 26 26 27 #include " Patterns/Singleton.hpp"28 #include " Patterns/Singleton_impl.hpp"27 #include "Singleton.hpp" 28 #include "Singleton_impl.hpp" 29 29 30 30 #ifdef HAVE_TESTRUNNER
Note:
See TracChangeset
for help on using the changeset viewer.
