Changeset 70672e3 for src/Patterns


Ignore:
Timestamp:
Dec 22, 2010, 5:20:21 PM (15 years ago)
Author:
Frederik Heber <heber@…>
Children:
cdf2e4
Parents:
9098f9
Message:

Added config.h to all header files.

Location:
src/Patterns
Files:
14 edited

Legend:

Unmodified
Added
Removed
  • src/Patterns/Cacheable.hpp

    r9098f9 r70672e3  
    88#ifndef CACHEABLE_HPP_
    99#define CACHEABLE_HPP_
     10
     11// include config.h
     12#ifdef HAVE_CONFIG_H
     13#include <config.h>
     14#endif
    1015
    1116#include "Observer.hpp"
  • src/Patterns/ObservedContainer.hpp

    r9098f9 r70672e3  
    88#ifndef OBSERVEDCONTAINER_HPP_
    99#define OBSERVEDCONTAINER_HPP_
     10
     11// include config.h
     12#ifdef HAVE_CONFIG_H
     13#include <config.h>
     14#endif
    1015
    1116#include "types.hpp"
  • src/Patterns/ObservedContainer_impl.hpp

    r9098f9 r70672e3  
    88#ifndef OBSERVEDCONTAINER_IMPL_HPP_
    99#define OBSERVEDCONTAINER_IMPL_HPP_
     10
     11// include config.h
     12#ifdef HAVE_CONFIG_H
     13#include <config.h>
     14#endif
    1015
    1116#include "ObservedContainer.hpp"
  • src/Patterns/ObservedIterator.hpp

    r9098f9 r70672e3  
    88#ifndef OBSERVEDITERATOR_HPP_
    99#define OBSERVEDITERATOR_HPP_
     10
     11// include config.h
     12#ifdef HAVE_CONFIG_H
     13#include <config.h>
     14#endif
    1015
    1116#include "Observer.hpp"
  • src/Patterns/Observer.cpp

    r9098f9 r70672e3  
    3434// this is more efficient if many objects can be observed (inherit from observable)
    3535// but only few are actually coupled with observers. E.g. TMV has over 500.000 Atoms,
    36 // which might become observable. Handling Observerable infrastructure in each of
     36// which might become observable. Handling Observable infrastructure in each of
    3737// these would use memory for each atom. By handling Observer-infrastructure
    3838// here we only need memory for objects that actually are observed.
  • src/Patterns/Observer.hpp

    r9098f9 r70672e3  
    88#ifndef OBSERVER_HPP_
    99#define OBSERVER_HPP_
     10
     11// include config.h
     12#ifdef HAVE_CONFIG_H
     13#include <config.h>
     14#endif
    1015
    1116#include <map>
  • src/Patterns/Registry.hpp

    r9098f9 r70672e3  
    1313#ifndef REGISTRY_HPP_
    1414#define REGISTRY_HPP_
     15
     16// include config.h
     17#ifdef HAVE_CONFIG_H
     18#include <config.h>
     19#endif
    1520
    1621#include <map>
  • src/Patterns/Registry_impl.hpp

    r9098f9 r70672e3  
    88#ifndef REGISTRY_IMPL_HPP_
    99#define REGISTRY_IMPL_HPP_
     10
     11// include config.h
     12#ifdef HAVE_CONFIG_H
     13#include <config.h>
     14#endif
    1015
    1116#include "MemDebug.hpp"
  • src/Patterns/Singleton.hpp

    r9098f9 r70672e3  
    88#ifndef SINGLETON_HPP_
    99#define SINGLETON_HPP_
     10
     11// include config.h
     12#ifdef HAVE_CONFIG_H
     13#include <config.h>
     14#endif
    1015
    1116#include <boost/thread.hpp>
  • src/Patterns/Singleton_impl.hpp

    r9098f9 r70672e3  
    88#ifndef SINGLETON_IMPL_HPP_
    99#define SINGLETON_IMPL_HPP_
     10
     11// include config.h
     12#ifdef HAVE_CONFIG_H
     13#include <config.h>
     14#endif
    1015
    1116#include "Assert.hpp"
  • src/Patterns/unittests/CacheableUnitTest.hpp

    r9098f9 r70672e3  
    88#ifndef CACHEABLEUNITTEST_HPP_
    99#define CACHEABLEUNITTEST_HPP_
     10
     11// include config.h
     12#ifdef HAVE_CONFIG_H
     13#include <config.h>
     14#endif
    1015
    1116#include <cppunit/extensions/HelperMacros.h>
  • src/Patterns/unittests/ObserverUnitTest.hpp

    r9098f9 r70672e3  
    88#ifndef OBSERVERTEST_HPP_
    99#define OBSERVERTEST_HPP_
     10
     11// include config.h
     12#ifdef HAVE_CONFIG_H
     13#include <config.h>
     14#endif
    1015
    1116#include <cppunit/extensions/HelperMacros.h>
  • src/Patterns/unittests/RegistryUnitTest.hpp

    r9098f9 r70672e3  
    88#ifndef REGISTRYUNITTEST_HPP_
    99#define REGISTRYUNITTEST_HPP_
     10
     11// include config.h
     12#ifdef HAVE_CONFIG_H
     13#include <config.h>
     14#endif
    1015
    1116#include <cppunit/extensions/HelperMacros.h>
  • src/Patterns/unittests/SingletonUnitTest.hpp

    r9098f9 r70672e3  
    88#ifndef SINGLETONUNITTEST_HPP_
    99#define SINGLETONUNITTEST_HPP_
     10
     11// include config.h
     12#ifdef HAVE_CONFIG_H
     13#include <config.h>
     14#endif
    1015
    1116#include <cppunit/extensions/HelperMacros.h>
Note: See TracChangeset for help on using the changeset viewer.