#ifndef _utl_IteratorDeprecator_h_ #define _utl_IteratorDeprecator_h_ #include #include namespace utl { /** \class IteratorDeprecator IteratorDeprecator.h utl/IteratorDeprecator.h \brief Wrapper around the normal Deprecator class that specifically deprecates the filter_iterator defaults of the FEvent. It can itself be removed after those defaults have finally been removed. See the documentation for Deprecator. \author Steffen Mueller \date 29 May 2009 \ingroup utilities */ class IteratorDeprecator : public Singleton { public: void Deprecated(const std::string& theIteratorName); protected: IteratorDeprecator() { } ~IteratorDeprecator() { } friend class Singleton; }; } #endif