kcdb.h | kcdb.h | |||
---|---|---|---|---|
skipping to change at line 32 | skipping to change at line 32 | |||
#include <kccompress.h> | #include <kccompress.h> | |||
#include <kccompare.h> | #include <kccompare.h> | |||
#include <kcmap.h> | #include <kcmap.h> | |||
namespace kyotocabinet { // common namespace | namespace kyotocabinet { // common namespace | |||
/** | /** | |||
* Constants for implementation. | * Constants for implementation. | |||
*/ | */ | |||
namespace { | namespace { | |||
const char DBSSMAGICDATA[] = "KCSS\n"; ///< magic data of the file | const char DBSSMAGICDATA[] = "KCSS\n"; ///< magic data of the snapshot fi le | |||
const size_t DBIOBUFSIZ = 8192; ///< size of the IO buffer | const size_t DBIOBUFSIZ = 8192; ///< size of the IO buffer | |||
} | } | |||
/** | /** | |||
* Interface of database abstraction. | * Interface of database abstraction. | |||
* @note This class is an abstract class to prescribe the interface of reco rd access. | * @note This class is an abstract class to prescribe the interface of reco rd access. | |||
*/ | */ | |||
class DB { | class DB { | |||
public: | public: | |||
/** | /** | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||