rikitiki  v0.1.67
Build C++ web server modules that allow easy routing and deployment.
server.h
1 /* Copyright (C) 2012-2013 Justin Berger
2  The full license is available in the LICENSE file at the root of this project and is also available at http://opensource.org/licenses/MIT. */
3 #pragma once
4 #include <rikitiki/rikitiki>
5 #include <httpd/httpd.h>
6 
7 namespace rikitiki {
8  namespace apache {
12  class ApacheServer : public Server {
13  public:
14  server_rec* server;
15  ApacheServer(server_rec* server);
16  };
17  }
18 }