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
Appender.hpp
1 // Copyright 2015 GEOSYSTEMS SRL
2 // All Rights Reserved.
3 
4 #ifndef FIRE_LOGGING_CORE_APPENDER_APPENDER_HPP_INCLUDED
5 #define FIRE_LOGGING_CORE_APPENDER_APPENDER_HPP_INCLUDED
6 
7 #include <string>
8 
15 namespace fire {
22 namespace logging {
29 namespace core {
36 namespace appender {
43 class Appender {
44  public:
56  virtual std::string getName() = 0;
57 };
58 } // namespace appender
59 } // namespace core
60 } // namespace logging
61 } // namespace fire
62 
63 #endif
Definition: Appender.hpp:43