Fork de wikipp, le moteur de wiki en c++, basé sur cppcms. Le fork ajoute la langue française
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.

index.h 266B

12345678910111213141516171819202122
  1. #ifndef INDEX_H
  2. #define INDEX_H
  3. #include "master.h"
  4. namespace apps {
  5. class wiki;
  6. class index : public master {
  7. void changes(std::string);
  8. void display_index();
  9. public:
  10. index(wiki &);
  11. std::string index_url();
  12. std::string changes_url(int n=0);
  13. };
  14. }
  15. #endif