Skip to content
Snippets Groups Projects
MainPage.h 450 B
Newer Older
  • Learn to ignore specific revisions
  • #pragma once
    
    #include <Wt/WApplication.h>
    #include <string>
    
    
    class MainPage : public Wt::WApplication
    
        MainPage(const Wt::WEnvironment& env);
    
    
    private:
        std::string getName(const std::string & path);
        std::string getDocument(const std::string & path);
    
        void displayDetail(Space space, const std::vector<Document> & availableDocuments, Wt::WContainerWidget * container, int document_id);