16 lines
290 B
C++
16 lines
290 B
C++
#include <iostream>
|
|
#include <sqlite3.h>
|
|
#include <string>
|
|
|
|
namespace data {
|
|
|
|
static int callback(void* NotUsed, int argc, char** argv, char** azColName);
|
|
|
|
void open_db(sqlite3* db_);
|
|
|
|
/*
|
|
this initializes the table in the database.
|
|
*/
|
|
void initialize_db(sqlite3* db_);
|
|
|
|
} // namespace data
|