0
0
mirror of https://github.com/rbock/sqlpp11.git synced 2024-11-16 04:47:18 +08:00
sqlpp11/test_scripts/sample.cpp

16 lines
253 B
C++
Raw Normal View History

#include <sample.h>
int main()
{
test::TabFoo tab_foo;
tab_foo.delta = "delta";
tab_foo.Epsilon = 42;
tab_foo.omega = 3.14;
test::TabBar tab_bar;
tab_bar.alpha = 42;
tab_bar.beta = "beta";
tab_bar.gamma = true;
tab_bar.delta = 42;
}