CARMA C++
Resources.h
Go to the documentation of this file.
1 #ifndef CARMA_DBMS_RESOURCES_H
2 #define CARMA_DBMS_RESOURCES_H
3 
14 #include <string>
15 
16 namespace carma {
17 namespace dbms {
18 
19  typedef enum {
20  DEFAULT_RDBMS,
21  DEFAULT_DATASRC,
22  DEFAULT_DBUSER,
23  DEFAULT_DBNAME,
24  DEFAULT_ODBCINI,
25  DEFAULT_SOCKET,
26  DEFAULT_PORT
27  } Resource;
28 
29  std::string getResource(const Resource& resource);
30 }}
31 
32 #endif