roviz  0.7
Code Documentation of roviz
livedoc_home_provider.h
1 #ifndef LIVEDOC_HOME_PROVIDER_H
2 #define LIVEDOC_HOME_PROVIDER_H
3 #include "gui/interface_livedoc_provider.h"
4 #include <QMap>
5 
7 {
8 public:
9  virtual QString provide_livedoc(QUrl doc);
10  const QMap<QString, QString>& get_listed_contents();
11 private:
12  static const QMap<QString, QString> map_contents;
13 };
14 
15 #endif // LIVEDOC_HOME_PROVIDER_H
virtual QString provide_livedoc(QUrl doc)
provide_livedoc returns the html content of the requested document or a null-string when no such docu...
Definition: livedoc_home_provider.cpp:12
Definition: livedoc_home_provider.h:6
Definition: interface_livedoc_provider.h:11
const QMap< QString, QString > & get_listed_contents()
get_listed_contents returns a map of contents which should be listed in a Index (e.g. Table of Contents)
Definition: livedoc_home_provider.cpp:65