Multi diag tools
Public Slots | Public Member Functions | Static Public Member Functions | List of all members
Mdt::AbstractConsoleApplicationMainFunction Class Referenceabstract

Abstract base of a main function in Qt console application with a event loop. More...

#include <AbstractConsoleApplicationMainFunction.h>

Inherits QObject.

Public Slots

virtual void aboutToQuit ()
 Cleanup code. More...
 

Public Member Functions

 AbstractConsoleApplicationMainFunction (QObject *parent=nullptr)
 Constructor.
 
virtual int runMain ()=0
 main function implementation
 

Static Public Member Functions

static QStringList getArguments ()
 Returns the list of command-line arguments. More...
 

Detailed Description

Abstract base of a main function in Qt console application with a event loop.

The class declaration MyMainFunction.h could look like:

class MyMainFunction : public Mdt::AbstractConsoleApplicationMainFunction
{
Q_OBJECT
public:
explicit MyMainFunction(QObject* parent = nullptr);
int runMain() override;
};

Example of the implementation in MyMainFunction.cpp:

int MyMainFunction::runMain()
{
qDebug() << "My main ...";
}

Finaly, in main.cpp:

QCoreApplication app(argc, argv);
// This will call runMain() once the event loop started
MyMainFunction mainImpl;
return app.exec();

Definition at line 63 of file AbstractConsoleApplicationMainFunction.h.

Member Function Documentation

void Mdt::AbstractConsoleApplicationMainFunction::aboutToQuit ( )
virtualslot

Cleanup code.

If some cleanup has to be done before the application exists, this function can be implemented. See QCoreApplication documentation to know why this is a recommanded way to do cleanup.

This default implementation does nothing.

Definition at line 41 of file AbstractConsoleApplicationMainFunction.cpp.

QStringList Mdt::AbstractConsoleApplicationMainFunction::getArguments ( )
static

Returns the list of command-line arguments.

Returns QCoreApplication::arguments(). As stated in QCoreApplication documentation, this method is slow, so the result should be stored in a variable if accessed many times (this is wy it is prefixed with get here)

Precondition
A instance of a QCoreApplication (or one of its derivate) must exist.

Definition at line 34 of file AbstractConsoleApplicationMainFunction.cpp.


The documentation for this class was generated from the following files: