mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-10 00:52:11 +01:00
Temporary printf()'s per db backend for main.
This commit is contained in:
parent
1fb86ff755
commit
4e2ef6f1e9
15
main.cpp
15
main.cpp
@ -1,15 +1,28 @@
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
|
||||
#include "core/http_server.h"
|
||||
#include "core/application.h"
|
||||
#include "core/file_cache.h"
|
||||
#include "core/http_server.h"
|
||||
|
||||
#include "rdn_application.h"
|
||||
|
||||
#define MAIN_CLASS RDNApplication
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
|
||||
#if MYSQL_PRESENT
|
||||
printf("mysql present\n");
|
||||
#endif
|
||||
|
||||
#if PGSQL_PRESENT
|
||||
printf("pgsql present\n");
|
||||
#endif
|
||||
|
||||
#if SQLITE_PRESENT
|
||||
printf("sqlite present\n");
|
||||
#endif
|
||||
|
||||
FileCache *file_cache = new FileCache(true);
|
||||
file_cache->wwwroot = "./www";
|
||||
file_cache->wwwroot_refresh_cache();
|
||||
|
Loading…
Reference in New Issue
Block a user