ChipMaster's trial hacks on C++CMS starting with v1.2.1. Not sure I'll follow on with the v2 since it looks to be breaking and mostly frivolous.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
370 B

  1. #ifndef CPPCMS_HTTP_CONNECTION_H
  2. #define CPPCMS_HTTP_CONNECTION_H
  3. #include "defs.h"
  4. #include "noncopyable.h"
  5. namespace cppcms {
  6. namespace http {
  7. class request;
  8. class response;
  9. class CGICC_API connection : private util::noncopyable {
  10. public:
  11. http::request &request() = 0;
  12. http::response &response() = 0;
  13. virtual ~connection() {}
  14. };
  15. }
  16. };
  17. #endif