show/hide this revision's text 2 Slightly better solution

Use macros. Technically that file would be source code file but it wouldn't look like this. Example:

//queries.incl - SQL queries
Q("SELECT Q(SELECT * FROM Users"Users)
Q("INSERT Q(INSERT [a] INTO Accounts"Accounts)


//source.cpp
#define Q(query) queryList.push_back(query);
#query,
char * queries[] = {
#include "queries.incl"
};
#undef Q

Later on you could do all sorts of other processing on that file by the same file, say you'd want to have array and a hash map of them, you could redefine Q to do another job and be done with it.

show/hide this revision's text 1

Use macros. Technically that file would be source code file but it wouldn't look like this. Example:

//queries.incl - SQL queries
Q("SELECT * FROM Users")
Q("INSERT [a] INTO Accounts")


//source.cpp
#define Q(query) queryList.push_back(query);
#include "queries.incl"
#undef Q