test_simple.h 266 B

123456789101112131415
  1. #ifndef TEST01_JSON_H
  2. #define TEST01_JSON_H
  3. #include <cppcms/application.h>
  4. class test_simple : public cppcms::application {
  5. public:
  6. test_simple(cppcms::service &s);
  7. void servre_json();
  8. void servre_plaintext();
  9. private:
  10. };
  11. #endif /* TEST01_JSON_H */