-
-
Save j2doll/8fcd51fcf3d516cfeda740747d27a7c4 to your computer and use it in GitHub Desktop.
DB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// DB.h | |
// source from leveldb of code.google | |
class DB | |
{ | |
public: | |
DB() { } | |
virtual ~DB() {} | |
private: // No copying allowed | |
DB(const DB&) {} | |
void operator=(const DB&) {} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment