Files
sqlitebrowser/src/sqlbrowser_util.h
Martin Kleusberg e4e840dc38 Make many methods and attributes of classes private
Make most variables, functions, slots etc. private instead of public.

Also make the constructors explicit.
2013-01-20 16:00:09 +01:00

18 lines
271 B
C

#ifndef _H_SQLBROWSERUTIL
#define _H_SQLBROWSERUTIL
#ifdef __cplusplus
extern "C" {
#endif
#include <sqlite3.h>
#include <stdio.h>
int load_database(sqlite3 * db, FILE * infile, int * lineErr);
#ifdef __cplusplus
} /* End of the 'extern "C"' block */
#endif
#endif