mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/MI-38.git
synced 2026-01-24 00:15:39 +03:00
36 lines
664 B
C++
36 lines
664 B
C++
#ifndef CONSOLE_H
|
|
#define CONSOLE_H
|
|
|
|
#include <QObject>
|
|
#include "s1000d_manager.h"
|
|
#include "editormainwindow.h"
|
|
#include "ru_const.h"
|
|
#include "lyx.h"
|
|
#include "html.h"
|
|
#include <QElapsedTimer>
|
|
|
|
class console
|
|
{
|
|
//Q_OBJECT
|
|
public:
|
|
console();
|
|
int exec(int argc, char *argv[]);
|
|
void printHelp();
|
|
|
|
QString lyxFile, dstPath;
|
|
QList<QString> packageNames;
|
|
bool exportSCORM, exportS1000D;
|
|
QString delYYY(QString st);
|
|
bool isCodingFilled();
|
|
bool isCodingFilledRecurs(int ind);
|
|
|
|
S1000D_Manager SM;
|
|
LyX lyx;
|
|
HTML html;
|
|
RU_Const ru_const;
|
|
QStringList tmpStrList;
|
|
QList<int> tmpIntList;
|
|
};
|
|
|
|
#endif // CONSOLE_H
|