14.06.2023

This commit is contained in:
Plotnikov
2023-06-14 18:08:32 +03:00
parent b0a0566f19
commit bdf6eab9ec
221 changed files with 203557 additions and 585 deletions

View File

@@ -0,0 +1,35 @@
#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