Go to the documentation of this file.00001
00045 #ifndef OWLDESCRIPTIONCREATOR_H
00046 #define OWLDESCRIPTIONCREATOR_H
00047
00048 #include <QString>
00049 #include <QDateTime>
00050
00054 class OWLDescriptionCreator
00055 {
00056 public:
00057 OWLDescriptionCreator(const QString& model_type, const QString& object_class, const QDateTime& creation_date);
00058
00059 QString getOwlDescription() const;
00060 private:
00061 void replaceFiller(const QString& filler, const QString& content);
00062
00063 QString owl_description;
00064 static const QString OWL_TEMPLATE;
00065 };
00066
00067 #endif // OWLDESCRIPTIONCREATOR_H