YAPOG  0.0.1
Yet Another Pokemon Online Game
DatabaseLogger.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_DATABASELOGGER_HPP
2 # define YAPOG_DATABASELOGGER_HPP
3 
4 # include "YAPOG/Macros.hpp"
6 
7 namespace yap
8 {
10  {
12 
13  public:
14  DatabaseLogger (OStream& os);
15  virtual ~DatabaseLogger ();
16 
17  virtual void Accept (IWriterVisitor& visitor);
18  virtual void Accept (IWriterConstVisitor& visitor) const;
19  };
20 } // namespace yap
21 
22 #endif // YAPOG_DATABASELOGGER_HPP