# HG changeset patch # User Matti Hamalainen # Date 1525727939 -10800 # Node ID ea85ff97a01ce4ca7b8cac5c55947154aa2022e7 # Parent 14c6a4d40232db2ca02a968ff919e3951690c172 Move SLSQLSchemaDef struct def to main.h diff -r 14c6a4d40232 -r ea85ff97a01c src/main.cpp --- a/src/main.cpp Tue May 08 00:18:34 2018 +0300 +++ b/src/main.cpp Tue May 08 00:18:59 2018 +0300 @@ -26,13 +26,6 @@ // // SQL schema / table definitions // -typedef struct -{ - QString name; - QString schema; -} SLSQLSchemaDef; - - static const SLSQLSchemaDef slSQLSchemaData[] = { { diff -r 14c6a4d40232 -r ea85ff97a01c src/main.h --- a/src/main.h Tue May 08 00:18:34 2018 +0300 +++ b/src/main.h Tue May 08 00:18:59 2018 +0300 @@ -71,6 +71,16 @@ // +// SQL schema / table definitions +// +typedef struct +{ + QString name; + QString schema; +} SLSQLSchemaDef; + + +// // Person information record // class SLPersonInfo : public QObject