mirror of
https://github.com/MariaDB/server.git
synced 2025-11-30 05:23:50 +03:00
Start trying to write a c++ interface. Addresses #197.
git-svn-id: file:///svn/tokudb@1175 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
12
cxx/test1.cpp
Normal file
12
cxx/test1.cpp
Normal file
@@ -0,0 +1,12 @@
|
||||
#include <db_cxx.h>
|
||||
|
||||
|
||||
#include <iostream>
|
||||
using namespace std;
|
||||
int main()
|
||||
{
|
||||
Dbt dbt;
|
||||
dbt.set_size(3);
|
||||
cout << "Hello World!" << endl; cout << "Welcome to C++ Programming" << endl;
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user