Changeset 115378 for src/Patterns
- Timestamp:
- Dec 22, 2010, 9:16:51 AM (15 years ago)
- Children:
- 9098f9
- Parents:
- 1d77e1a
- git-author:
- Frederik Heber <heber@…> (12/22/10 08:22:13)
- git-committer:
- Frederik Heber <heber@…> (12/22/10 09:16:51)
- Location:
- src/Patterns
- Files:
-
- 2 deleted
- 7 edited
-
Cacheable.hpp (modified) (1 diff)
-
Makefile.am (deleted)
-
Makefile.in (deleted)
-
Observer.cpp (modified) (2 diffs)
-
Registry_impl.hpp (modified) (1 diff)
-
Singleton.hpp (modified) (1 diff)
-
Singleton_impl.hpp (modified) (1 diff)
-
unittests/Makefile.am (modified) (3 diffs)
-
unittests/ObserverUnitTest.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Patterns/Cacheable.hpp
r1d77e1a r115378 13 13 #include <boost/shared_ptr.hpp> 14 14 15 #include " Assert.hpp"15 #include "Helpers/Assert.hpp" 16 16 17 17 #ifndef NO_CACHING -
src/Patterns/Observer.cpp
r1d77e1a r115378 18 18 #endif 19 19 20 #include " MemDebug.hpp"20 #include "Helpers/MemDebug.hpp" 21 21 22 22 #include "Observer.hpp" … … 24 24 #include <iostream> 25 25 26 #include " Assert.hpp"27 #include " MemDebug.hpp"26 #include "Helpers/Assert.hpp" 27 #include "Helpers/MemDebug.hpp" 28 28 29 29 using namespace std; -
src/Patterns/Registry_impl.hpp
r1d77e1a r115378 9 9 #define REGISTRY_IMPL_HPP_ 10 10 11 #include " MemDebug.hpp"11 #include "Helpers/MemDebug.hpp" 12 12 13 13 #include "Patterns/Registry.hpp" 14 14 #include "Patterns/Singleton_impl.hpp" 15 15 16 #include " Assert.hpp"16 #include "Helpers/Assert.hpp" 17 17 #include <iostream> 18 18 -
src/Patterns/Singleton.hpp
r1d77e1a r115378 11 11 #include <boost/thread.hpp> 12 12 13 #include " Assert.hpp"13 #include "Helpers/Assert.hpp" 14 14 15 15 /** -
src/Patterns/Singleton_impl.hpp
r1d77e1a r115378 9 9 #define SINGLETON_IMPL_HPP_ 10 10 11 #include " Assert.hpp"11 #include "Helpers/Assert.hpp" 12 12 #include "Patterns/Singleton.hpp" 13 13 -
src/Patterns/unittests/Makefile.am
r1d77e1a r115378 20 20 BOOST_LIB = $(BOOST_LDFLAGS) $(BOOST_MPL_LIB) $(BOOST_PROGRAM_OPTIONS_LIB) $(BOOST_FILESYSTEM_LIB) $(BOOST_SYSTEM_LIB) $(BOOST_THREAD_LIB) 21 21 TESTLIBS = \ 22 ../../libCodePatterns -@CODEPATTERNS_API_VERSION@.la \22 ../../libCodePatterns.la \ 23 23 $(BOOST_LIB) 24 24 … … 27 27 CacheableUnitTest.hpp \ 28 28 ../Cachable.hpp \ 29 ../Observer.cpp \30 29 ../Observer.hpp \ 31 30 ../ObserverIterator.hpp … … 35 34 ObserverUnitTest.cpp \ 36 35 ObserverUnitTest.hpp \ 37 ../Observer.cpp \38 36 ../Observer.hpp \ 39 37 ../ObserverIterator.hpp -
src/Patterns/unittests/ObserverUnitTest.cpp
r1d77e1a r115378 25 25 #include "Patterns/Observer.hpp" 26 26 #include "Patterns/ObservedIterator.hpp" 27 #include " Assert.hpp"27 #include "Helpers/Assert.hpp" 28 28 29 29 #include <iostream>
Note:
See TracChangeset
for help on using the changeset viewer.
