Fork de wikipp, le moteur de wiki en c++, basé sur cppcms. Le fork ajoute la langue française
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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