Changeset 70672e3
- Timestamp:
- Dec 22, 2010, 5:20:21 PM (15 years ago)
- Children:
- cdf2e4
- Parents:
- 9098f9
- Location:
- src
- Files:
-
- 29 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Helpers/Assert.hpp
r9098f9 r70672e3 8 8 #ifndef ASSERT_HPP_ 9 9 #define ASSERT_HPP_ 10 11 // include config.h 12 #ifdef HAVE_CONFIG_H 13 #include <config.h> 14 #endif 10 15 11 16 #include<sstream> -
src/Helpers/Info.hpp
r9098f9 r70672e3 9 9 #define INFO_HPP_ 10 10 11 using namespace std; 11 // include config.h 12 #ifdef HAVE_CONFIG_H 13 #include <config.h> 14 #endif 12 15 13 16 /*********************************************** includes ***********************************/ -
src/Helpers/Log.hpp
r9098f9 r70672e3 8 8 #ifndef LOG_HPP_ 9 9 #define LOG_HPP_ 10 11 // include config.h 12 #ifdef HAVE_CONFIG_H 13 #include <config.h> 14 #endif 10 15 11 16 #include "errorlogger.hpp" -
src/Helpers/MemDebug.hpp
r9098f9 r70672e3 8 8 #ifndef MEMDEBUG_HPP_ 9 9 #define MEMDEBUG_HPP_ 10 11 // include config.h 12 #ifdef HAVE_CONFIG_H 13 #include <config.h> 14 #endif 10 15 11 16 /** -
src/Helpers/Range.hpp
r9098f9 r70672e3 8 8 #ifndef RANGE_HPP_ 9 9 #define RANGE_HPP_ 10 11 // include config.h 12 #ifdef HAVE_CONFIG_H 13 #include <config.h> 14 #endif 15 10 16 template <class T> 11 17 struct range { -
src/Helpers/Verbose.hpp
r9098f9 r70672e3 9 9 #define VERBOSE_HPP_ 10 10 11 using namespace std;12 13 11 /*********************************************** includes ***********************************/ 14 12 … … 19 17 20 18 #include <iosfwd> 19 20 using namespace std; 21 21 22 22 /************************************* Class Verbose & Binary *******************************/ -
src/Helpers/enumeration.hpp
r9098f9 r70672e3 8 8 #ifndef ENUMERATOR_HPP_ 9 9 #define ENUMERATOR_HPP_ 10 11 // include config.h 12 #ifdef HAVE_CONFIG_H 13 #include <config.h> 14 #endif 10 15 11 16 /************ struct to contain simple enumerations ***************/ -
src/Helpers/errorlogger.hpp
r9098f9 r70672e3 8 8 #ifndef ERRORLOGGER_HPP_ 9 9 #define ERRORLOGGER_HPP_ 10 11 // include config.h 12 #ifdef HAVE_CONFIG_H 13 #include <config.h> 14 #endif 10 15 11 16 #include <iosfwd> -
src/Helpers/logger.hpp
r9098f9 r70672e3 8 8 #ifndef LOGGER_HPP_ 9 9 #define LOGGER_HPP_ 10 11 // include config.h 12 #ifdef HAVE_CONFIG_H 13 #include <config.h> 14 #endif 10 15 11 16 #include <iosfwd> -
src/Helpers/toString.hpp
r9098f9 r70672e3 9 9 #ifndef TOSTRING_HPP_ 10 10 #define TOSTRING_HPP_ 11 12 // include config.h 13 #ifdef HAVE_CONFIG_H 14 #include <config.h> 15 #endif 11 16 12 17 #include <iostream> -
src/Patterns/Cacheable.hpp
r9098f9 r70672e3 8 8 #ifndef CACHEABLE_HPP_ 9 9 #define CACHEABLE_HPP_ 10 11 // include config.h 12 #ifdef HAVE_CONFIG_H 13 #include <config.h> 14 #endif 10 15 11 16 #include "Observer.hpp" -
src/Patterns/ObservedContainer.hpp
r9098f9 r70672e3 8 8 #ifndef OBSERVEDCONTAINER_HPP_ 9 9 #define OBSERVEDCONTAINER_HPP_ 10 11 // include config.h 12 #ifdef HAVE_CONFIG_H 13 #include <config.h> 14 #endif 10 15 11 16 #include "types.hpp" -
src/Patterns/ObservedContainer_impl.hpp
r9098f9 r70672e3 8 8 #ifndef OBSERVEDCONTAINER_IMPL_HPP_ 9 9 #define OBSERVEDCONTAINER_IMPL_HPP_ 10 11 // include config.h 12 #ifdef HAVE_CONFIG_H 13 #include <config.h> 14 #endif 10 15 11 16 #include "ObservedContainer.hpp" -
src/Patterns/ObservedIterator.hpp
r9098f9 r70672e3 8 8 #ifndef OBSERVEDITERATOR_HPP_ 9 9 #define OBSERVEDITERATOR_HPP_ 10 11 // include config.h 12 #ifdef HAVE_CONFIG_H 13 #include <config.h> 14 #endif 10 15 11 16 #include "Observer.hpp" -
src/Patterns/Observer.cpp
r9098f9 r70672e3 34 34 // this is more efficient if many objects can be observed (inherit from observable) 35 35 // but only few are actually coupled with observers. E.g. TMV has over 500.000 Atoms, 36 // which might become observable. Handling Observ erable infrastructure in each of36 // which might become observable. Handling Observable infrastructure in each of 37 37 // these would use memory for each atom. By handling Observer-infrastructure 38 38 // here we only need memory for objects that actually are observed. -
src/Patterns/Observer.hpp
r9098f9 r70672e3 8 8 #ifndef OBSERVER_HPP_ 9 9 #define OBSERVER_HPP_ 10 11 // include config.h 12 #ifdef HAVE_CONFIG_H 13 #include <config.h> 14 #endif 10 15 11 16 #include <map> -
src/Patterns/Registry.hpp
r9098f9 r70672e3 13 13 #ifndef REGISTRY_HPP_ 14 14 #define REGISTRY_HPP_ 15 16 // include config.h 17 #ifdef HAVE_CONFIG_H 18 #include <config.h> 19 #endif 15 20 16 21 #include <map> -
src/Patterns/Registry_impl.hpp
r9098f9 r70672e3 8 8 #ifndef REGISTRY_IMPL_HPP_ 9 9 #define REGISTRY_IMPL_HPP_ 10 11 // include config.h 12 #ifdef HAVE_CONFIG_H 13 #include <config.h> 14 #endif 10 15 11 16 #include "MemDebug.hpp" -
src/Patterns/Singleton.hpp
r9098f9 r70672e3 8 8 #ifndef SINGLETON_HPP_ 9 9 #define SINGLETON_HPP_ 10 11 // include config.h 12 #ifdef HAVE_CONFIG_H 13 #include <config.h> 14 #endif 10 15 11 16 #include <boost/thread.hpp> -
src/Patterns/Singleton_impl.hpp
r9098f9 r70672e3 8 8 #ifndef SINGLETON_IMPL_HPP_ 9 9 #define SINGLETON_IMPL_HPP_ 10 11 // include config.h 12 #ifdef HAVE_CONFIG_H 13 #include <config.h> 14 #endif 10 15 11 16 #include "Assert.hpp" -
src/Patterns/unittests/CacheableUnitTest.hpp
r9098f9 r70672e3 8 8 #ifndef CACHEABLEUNITTEST_HPP_ 9 9 #define CACHEABLEUNITTEST_HPP_ 10 11 // include config.h 12 #ifdef HAVE_CONFIG_H 13 #include <config.h> 14 #endif 10 15 11 16 #include <cppunit/extensions/HelperMacros.h> -
src/Patterns/unittests/ObserverUnitTest.hpp
r9098f9 r70672e3 8 8 #ifndef OBSERVERTEST_HPP_ 9 9 #define OBSERVERTEST_HPP_ 10 11 // include config.h 12 #ifdef HAVE_CONFIG_H 13 #include <config.h> 14 #endif 10 15 11 16 #include <cppunit/extensions/HelperMacros.h> -
src/Patterns/unittests/RegistryUnitTest.hpp
r9098f9 r70672e3 8 8 #ifndef REGISTRYUNITTEST_HPP_ 9 9 #define REGISTRYUNITTEST_HPP_ 10 11 // include config.h 12 #ifdef HAVE_CONFIG_H 13 #include <config.h> 14 #endif 10 15 11 16 #include <cppunit/extensions/HelperMacros.h> -
src/Patterns/unittests/SingletonUnitTest.hpp
r9098f9 r70672e3 8 8 #ifndef SINGLETONUNITTEST_HPP_ 9 9 #define SINGLETONUNITTEST_HPP_ 10 11 // include config.h 12 #ifdef HAVE_CONFIG_H 13 #include <config.h> 14 #endif 10 15 11 16 #include <cppunit/extensions/HelperMacros.h> -
src/codepatterns-config-main.cpp
r9098f9 r70672e3 1 // include config.h 2 #ifdef HAVE_CONFIG_H 3 #include <config.h> 4 #endif 5 1 6 #include <iostream> 2 7 #include <boost/program_options.hpp> -
src/codepatterns-config.hpp
r9098f9 r70672e3 1 1 #ifndef CODEPATTERNS_CONFIG_HPP_ 2 2 #define CODEPATTERNS_CONFIG_HPP_ 3 4 // include config.h 5 #ifdef HAVE_CONFIG_H 6 #include <config.h> 7 #endif 3 8 4 9 extern const char *CODEPATTERNSCFLAGS; -
src/unittests/InfoUnitTest.hpp
r9098f9 r70672e3 8 8 #ifndef INFOUNITTEST_HPP_ 9 9 #define INFOUNITTEST_HPP_ 10 11 // include config.h 12 #ifdef HAVE_CONFIG_H 13 #include <config.h> 14 #endif 10 15 11 16 #include <cppunit/extensions/HelperMacros.h> -
src/unittests/LogUnitTest.hpp
r9098f9 r70672e3 5 5 #ifndef LOGTEST_HPP_ 6 6 #define LOGTEST_HPP_ 7 8 // include config.h 9 #ifdef HAVE_CONFIG_H 10 #include <config.h> 11 #endif 7 12 8 13 #include <cppunit/extensions/HelperMacros.h> -
src/version.hpp
r9098f9 r70672e3 1 1 #ifndef VERSION_HPP_ 2 2 #define VERSION_HPP_ 3 4 // include config.h 5 #ifdef HAVE_CONFIG_H 6 #include <config.h> 7 #endif 3 8 4 9 extern const char *CODEPATTERNSVERSION;
Note:
See TracChangeset
for help on using the changeset viewer.