Add no-deprecated to warnings due to dynamic exceptions.
[anna.git] / include / anna / dbos / dbos.hpp
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_dbos_hpp
10 #define anna_dbos_dbos_hpp
11
12 namespace anna {
13 /**
14 Define las clases y templates necesarias para convertir datos guardados en un medio fisico en
15 clases totalmente funcionalines en C++.
16
17 El ejecutable debera enlazarse con las librerias:
18    \li anna.core.a
19    \li anna.xml.a
20    \li anna.app.a
21    \li anna.comm.a
22    \li anna.dbms.a
23    \li anna.dbos.a
24
25 El <b>Packet Header</b> es anna.dbos.h
26 */
27 namespace dbos {
28 }
29 }
30
31 #include <anna/dbos/Accesor.hpp>
32 #include <anna/dbos/AutoObject.hpp>
33 #include <anna/dbos/AutoSet.hpp>
34 #include <anna/dbos/Creator.hpp>
35 #include <anna/dbos/Eraser.hpp>
36 #include <anna/dbos/Loader.hpp>
37 #include <anna/dbos/Repository.hpp>
38 #include <anna/dbos/Object.hpp>
39 #include <anna/dbos/ObjectAllocator.hpp>
40 #include <anna/dbos/ObjectFacade.hpp>
41 #include <anna/dbos/Recorder.hpp>
42 #include <anna/dbos/Set.hpp>
43 #include <anna/dbos/SetFacade.hpp>
44 #include <anna/dbos/StorageArea.hpp>
45 #include <anna/dbos/CrossedLoader.hpp>
46
47 using namespace anna::dbos;
48
49 #endif
50