FactDev  0.1
texgenerator.h
1 #ifndef TEXGENERATOR_H
2 #define TEXGENERATOR_H
3 
4 #include "models/billing.h"
5 #include "models/user.h"
6 
7 #include "libs/qt-mustache/src/mustache.h"
8 
9 namespace Generator {
14 {
15 public:
20  TexGenerator(QString tpl);
21  ~TexGenerator();
22 
29  void generate(QVariantHash data, QString path);
30 
31 private:
32  QString _tplFile;
33 };
34 
35 }
36 #endif // TEXGENERATOR_H
TexGenerator(QString tpl)
TexGenerator::TexGenerator Construct a TexGenerator.
Definition: texgenerator.cpp:4
void generate(QVariantHash data, QString path)
TexGenerator::generate Generate a LaTeX file into a file specified by the path and which contains dat...
Definition: texgenerator.cpp:14
The TexGenerator class Generate a LaTeX file.
Definition: texgenerator.h:13