ANNA Suite  2020b
Multipurpose development suite for Telco applications
Recorder.hpp
Go to the documentation of this file.
1 // ANNA - Anna is Not Nothingness Anymore //
2 // //
3 // (c) Copyright 2005-2015 Eduardo Ramos Testillano & Francisco Ruiz Rayo //
4 // //
5 // See project site at http://redmine.teslayout.com/projects/anna-suite //
6 // See accompanying file LICENSE or copy at http://www.teslayout.com/projects/public/anna.LICENSE //
7 
8 
9 #ifndef anna_dbos_Recorder_hpp
10 #define anna_dbos_Recorder_hpp
11 
12 #include <anna/dbos/Accesor.hpp>
13 
14 namespace anna {
15 
16 namespace dbos {
17 
22 class Recorder : public Accesor {
23 public:
30  virtual const char* getClassName() const { return "anna::dbos::Recorder"; }
31 
32 protected:
39  Recorder(dbms::Database& database, const Id id = 0) : Accesor(database, id) {;}
40 
41 private:
42  Index getIndex() const { return 0; } // No se usa
43 };
44 
45 }
46 }
47 
48 #endif
49 
50 
51 
U64 Index
Definition: defines.hpp:18
Definition: Accesor.hpp:35
Definition: Database.hpp:37
Definition: Recorder.hpp:22
short Id
Definition: Accesor.hpp:37
Definition: app.hpp:12
virtual const char * getClassName() const
Definition: Recorder.hpp:30
Recorder(dbms::Database &database, const Id id=0)
Definition: Recorder.hpp:39