- Timestamp:
- Dec 22, 2010, 10:32:46 AM (15 years ago)
- Children:
- 70672e3
- Parents:
- 115378
- Location:
- src
- Files:
-
- 22 edited
-
Helpers/Assert.hpp (modified) (1 diff)
-
Helpers/errorlogger.cpp (modified) (1 diff)
-
Helpers/errorlogger.hpp (modified) (1 diff)
-
Helpers/logger.cpp (modified) (1 diff)
-
Helpers/logger.hpp (modified) (1 diff)
-
Makefile.am (modified) (3 diffs)
-
Patterns/Cacheable.hpp (modified) (1 diff)
-
Patterns/ObservedContainer.hpp (modified) (1 diff)
-
Patterns/ObservedContainer_impl.hpp (modified) (1 diff)
-
Patterns/ObservedIterator.hpp (modified) (1 diff)
-
Patterns/Observer.cpp (modified) (2 diffs)
-
Patterns/Registry_impl.hpp (modified) (1 diff)
-
Patterns/Singleton.hpp (modified) (2 diffs)
-
Patterns/Singleton_impl.hpp (modified) (1 diff)
-
Patterns/unittests/CacheableUnitTest.cpp (modified) (1 diff)
-
Patterns/unittests/Makefile.am (modified) (1 diff)
-
Patterns/unittests/ObserverUnitTest.cpp (modified) (1 diff)
-
Patterns/unittests/SingletonUnitTest.cpp (modified) (1 diff)
-
unittests/InfoUnitTest.cpp (modified) (1 diff)
-
unittests/LogUnitTest.cpp (modified) (1 diff)
-
unittests/Makefile.am (modified) (1 diff)
-
unittests/TestRunnerMain.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Helpers/Assert.hpp
r115378 r9098f9 15 15 #include<map> 16 16 17 #include " Helpers/toString.hpp"17 #include "toString.hpp" 18 18 19 19 /** -
src/Helpers/errorlogger.cpp
r115378 r9098f9 24 24 #include "errorlogger.hpp" 25 25 #include "Verbose.hpp" 26 #include " Patterns/Singleton_impl.hpp"26 #include "Singleton_impl.hpp" 27 27 28 28 int errorLogger::verbosity = 2; -
src/Helpers/errorlogger.hpp
r115378 r9098f9 11 11 #include <iosfwd> 12 12 13 #include " Patterns/Singleton.hpp"13 #include "Singleton.hpp" 14 14 15 15 using namespace std; -
src/Helpers/logger.cpp
r115378 r9098f9 24 24 #include "logger.hpp" 25 25 #include "Verbose.hpp" 26 #include " Patterns/Singleton_impl.hpp"26 #include "Singleton_impl.hpp" 27 27 28 28 -
src/Helpers/logger.hpp
r115378 r9098f9 11 11 #include <iosfwd> 12 12 13 #include " Patterns/Singleton.hpp"13 #include "Singleton.hpp" 14 14 15 15 using namespace std; -
src/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 … … 29 29 30 30 ### PATTERNS ### 31 32 nobase_include_HEADERS = $(PATTERNSOURCE) $(PATTERNHEADER)33 31 34 32 PATTERNSOURCE = \ … … 106 104 ## configuration header file is generated at configure time and should not be 107 105 ## shipped with the source tarball. 108 libCodePatterns_libincludedir = $(includedir)/ Helpers/106 libCodePatterns_libincludedir = $(includedir)/CodePatterns/ 109 107 #-$(CODEPATTERNS_API_VERSION) 110 nodist_libCodePatterns_libinclude_HEADERS = $(HELPERSHEADER) $(top_builddir)/libCodePatterns_config.h108 libCodePatterns_libinclude_HEADERS = $(HELPERSHEADER) $(PATTERNSOURCE) $(PATTERNHEADER) $(top_builddir)/libCodePatterns_config.h 111 109 112 110 ## Install the generated pkg-config file (.pc) into the expected location for -
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 -
src/unittests/InfoUnitTest.cpp
r115378 r9098f9 27 27 #include <stdio.h> 28 28 29 #include " Helpers/Info.hpp"30 #include " Helpers/Log.hpp"29 #include "Info.hpp" 30 #include "Log.hpp" 31 31 32 32 #include "InfoUnitTest.hpp" -
src/unittests/LogUnitTest.cpp
r115378 r9098f9 22 22 #include <cppunit/ui/text/TestRunner.h> 23 23 24 #include " Helpers/Log.hpp"25 #include " Helpers/Verbose.hpp"24 #include "Log.hpp" 25 #include "Verbose.hpp" 26 26 27 27 #include "LogUnitTest.hpp" -
src/unittests/Makefile.am
r115378 r9098f9 5 5 ../Patterns/unittests 6 6 7 INCLUDES = -I$(top_srcdir)/src 7 INCLUDES = -I$(top_srcdir)/src/Patterns -I$(top_srcdir)/src/Helpers 8 8 9 9 AM_LDFLAGS = $(CPPUNIT_LIBS) -ldl -
src/unittests/TestRunnerMain.cpp
r115378 r9098f9 27 27 #else 28 28 29 #include " unittests/UnitTestMain.cpp"29 #include "UnitTestMain.cpp" 30 30 31 31 #endif /* HAVE_ECUT */
Note:
See TracChangeset
for help on using the changeset viewer.
