mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2025-04-20 01:43:12 +02:00
Renamed the framework folder to core.
This commit is contained in:
parent
0021f6cafa
commit
c53c3dbfc3
@ -1 +1 @@
|
||||
g++ -o3 -g main.cpp ./framework/settings.cpp ./framework/request.cpp ./framework/http_server.cpp ./framework/file_cache.cpp ./framework/application.cpp ./rdn_application.cpp -o ./bin/server -Ilibs -lpthread -std=c++11
|
||||
g++ -o3 -g main.cpp ./core/settings.cpp ./core/request.cpp ./core/http_server.cpp ./core/file_cache.cpp ./core/application.cpp ./rdn_application.cpp -o ./bin/server -Ilibs -lpthread -std=c++11
|
||||
|
6
main.cpp
6
main.cpp
@ -1,9 +1,9 @@
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
|
||||
#include "framework/http_server.h"
|
||||
#include "framework/application.h"
|
||||
#include "framework/file_cache.h"
|
||||
#include "core/http_server.h"
|
||||
#include "core/application.h"
|
||||
#include "core/file_cache.h"
|
||||
|
||||
#include "rdn_application.h"
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
#include "rdn_application.h"
|
||||
|
||||
#include "framework/request.h"
|
||||
#include "core/request.h"
|
||||
|
||||
#include <iostream>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#ifndef RDN_APPLICATION_H
|
||||
#define RDN_APPLICATION_H
|
||||
|
||||
#include "framework/application.h"
|
||||
#include "core/application.h"
|
||||
|
||||
class RDNApplication : public Application {
|
||||
public:
|
||||
|
Loading…
Reference in New Issue
Block a user