1
0
mirror of https://github.com/MariaDB/server.git synced 2025-11-30 05:23:50 +03:00
Files
mariadb/cxx/test1.cpp
Bradley C. Kuszmaul a58dc6af93 Start trying to write a c++ interface. Addresses #197.
git-svn-id: file:///svn/tokudb@1175 c7de825b-a66e-492c-adef-691d508d4ae1
2007-12-17 22:00:54 +00:00

13 lines
210 B
C++

#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;
}