Changeset 70672e3 for src/Patterns
- Timestamp:
- Dec 22, 2010, 5:20:21 PM (15 years ago)
- Children:
- cdf2e4
- Parents:
- 9098f9
- Location:
- src/Patterns
- Files:
-
- 14 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) (1 diff)
-
Observer.hpp (modified) (1 diff)
-
Registry.hpp (modified) (1 diff)
-
Registry_impl.hpp (modified) (1 diff)
-
Singleton.hpp (modified) (1 diff)
-
Singleton_impl.hpp (modified) (1 diff)
-
unittests/CacheableUnitTest.hpp (modified) (1 diff)
-
unittests/ObserverUnitTest.hpp (modified) (1 diff)
-
unittests/RegistryUnitTest.hpp (modified) (1 diff)
-
unittests/SingletonUnitTest.hpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
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>
Note:
See TracChangeset
for help on using the changeset viewer.
