Fire Core  8.0.0.alpha
GIS framework per tutti gli usi
 Tutto Classi Namespace Funzioni Variabili Ridefinizioni di tipo (typedef) Tipi enumerati (enum) Valori del tipo enumerato Friend
AbstractManager.hpp
1 // Copyright 2015 GEOSYSTEMS SRL
2 // All Rights Reserved.
3 
4 #ifndef FIRE_LOGGING_CORE_APPENDER_ABSTRACTMANAGER_HPP_INCLUDED
5 #define FIRE_LOGGING_CORE_APPENDER_ABSTRACTMANAGER_HPP_INCLUDED
6 
7 #include <exception>
8 
9 #include "fire/Object.hpp"
10 #include "fire/export.hpp"
11 
18 namespace fire {
25 namespace logging {
32 namespace core {
39 namespace appender {
46 class FIRE_ENGINE_DLL AbstractManager : public fire::Object {
47  public:
55  virtual ~AbstractManager();
56 };
57 } // namespace appender
58 } // namespace core
59 } // namespace logging
60 } // namespace fire
61 
62 #endif
Definition: AbstractManager.hpp:46
Classe per la gestione di un oggetto.
Definition: Object.hpp:29