Add sqlite library

This commit is contained in:
Shaquille Soekhlal 2019-05-20 21:57:01 -03:00
parent 0c48596130
commit 48eec85893
2 changed files with 9713 additions and 1 deletions

9711
headers/3rd-party/sqlite_orm.h vendored Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,5 @@
#include<iostream> #include<iostream>
#include "headers/3rd-party/sqlite_orm.h"
class item{ class item{
public: public:
@ -8,6 +9,6 @@ class item{
}; };
int main(){ int main(){
std::cout << "Hello";
return 0; return 0;
} }