Re: [sqlite] cannot declare member function `static int

2004-01-10 Thread eno
My Implementation: ## namespace F { static int FSqLite :: callback(void *NotUsed, int argc, char **argv, char **azColName) { return 0; // only for testing } > [ ... ] use int FSqLite :: callback(void *NotUsed, int argc, char **argv, char **azCo

[sqlite] cannot declare member function `static int

2004-01-10 Thread Christian Kienle
Hi, at the moment I try to write a few wrappers for the sqlite api. Here we are: ## #include #include using namespace std; namespace F { class FSqLite : public FApplication { public: FSqLite() {} ~FSqLite() {} static int callback(void *No