Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
5e870504
Commit
5e870504
authored
Jan 14, 2008
by
Rich Prohaska
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add #include guard. closes #269
git-svn-id:
file:///svn/tokudb@1653
c7de825b-a66e-492c-adef-691d508d4ae1
parent
cb91e251
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
include/db_cxx.h
include/db_cxx.h
+6
-0
No files found.
include/db_cxx.h
View file @
5e870504
#ifndef _DB_CXX_H_
#define _DB_CXX_H_
#include <db.h>
#include <db.h>
#include <iostream>
#include <iostream>
#include <exception>
#include <exception>
...
@@ -127,6 +130,7 @@ class Db {
...
@@ -127,6 +130,7 @@ class Db {
int
fd
(
int
*
);
int
fd
(
int
*
);
void
set_errpfx
(
const
char
*
errpfx
);
void
set_error_stream
(
std
::
ostream
*
);
void
set_error_stream
(
std
::
ostream
*
);
/* the cxx callbacks must be public so they can be called by the c callback. But it's really private. */
/* the cxx callbacks must be public so they can be called by the c callback. But it's really private. */
...
@@ -223,3 +227,5 @@ class Dbc : protected DBC {
...
@@ -223,3 +227,5 @@ class Dbc : protected DBC {
Dbc
();
// User may not call it.
Dbc
();
// User may not call it.
~
Dbc
();
// User may not delete it.
~
Dbc
();
// User may not delete it.
};
};
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment