Files
MI-38/s1000d/Converter14/console.h
2022-07-04 13:15:35 +03:00

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