mirror of
https://github.com/riuson/lcd-image-converter.git
synced 2026-03-04 23:34:12 +01:00
14 lines
505 B
C++
14 lines
505 B
C++
#include "modeparserbase.h"
|
|
//-----------------------------------------------------------------------------
|
|
namespace CommandLine {
|
|
//-----------------------------------------------------------------------------
|
|
ModeParserBase::ModeParserBase(QCommandLineParser *parser, QObject *parent) :
|
|
QObject(parent)
|
|
{
|
|
this->mParser = parser;
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
|