File: MyDb.hpp

package info (click to toggle)
db4.6 4.6.21-16
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 59,664 kB
  • ctags: 35,453
  • sloc: ansic: 144,740; tcl: 52,840; java: 30,580; sh: 13,497; perl: 13,407; cpp: 10,633; cs: 2,660; makefile: 2,493; awk: 1,322; xml: 113; php: 22; asm: 14; sed: 9
file content (38 lines) | stat: -rw-r--r-- 857 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// File: MyDb.hpp

#ifndef MYDB_H
#define MYDB_H

#include <string>
#include <db_cxx.h>

class MyDb
{
public:
    // Constructor requires a path to the database,
    // and a database name.
    MyDb(std::string &path, std::string &dbName,
         bool isSecondary = false);

    // Our destructor just calls our private close method.
    ~MyDb() { close(); }

    inline Db &getDb() {return db_;}

private:
    Db db_;
    std::string dbFileName_;
    u_int32_t cFlags_;

    // Make sure the default constructor is private
    // We don't want it used.
    MyDb() : db_(NULL, 0) {}

    // We put our database close activity here.
    // This is called from our destructor. In
    // a more complicated example, we might want
    // to make this method public, but a private
    // method is more appropriate for this example.
    void close();
};
#endif