0
0
mirror of https://github.com/rbock/sqlpp11.git synced 2024-11-15 20:31:16 +08:00

Cleaned up directory structure.

This commit is contained in:
Roland Bock 2013-08-14 06:34:11 +02:00
parent 705f39e379
commit e6f086bbfa
54 changed files with 5 additions and 5 deletions

View File

@ -26,7 +26,7 @@
#include <iostream>
#include <sqlpp11/insert.h>
#include <sqlpp11/select.h>
#include <sqlpp11/examples/TabSample.h>
#include "TabSample.h"
#include <iostream>
class DbMock

View File

@ -26,7 +26,7 @@
#include <iostream>
#include <sqlpp11/remove.h>
#include <sqlpp11/select.h>
#include <sqlpp11/examples/TabSample.h>
#include "TabSample.h"
#include <iostream>
class DbMock

View File

@ -23,7 +23,7 @@
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <sqlpp11/examples/TabSample.h>
#include "TabSample.h"
#include <sqlpp11/select.h>
#include <iostream>

View File

@ -26,7 +26,7 @@
#include <iostream>
#include <sqlpp11/update.h>
#include <sqlpp11/select.h>
#include <sqlpp11/examples/TabSample.h>
#include "TabSample.h"
#include <iostream>
class DbMock

View File

@ -1,3 +1,3 @@
# to be called from the sqlpp11 folder
clang++ -std=c++11 -stdlib=libc++ examples/SelectTest.cpp -I..
clang++ -std=c++11 -stdlib=libc++ examples/SelectTest.cpp -Iinclude