13 lines
207 B
C++
13 lines
207 B
C++
#include "configurationhandler.h"
|
|
|
|
ConfigurationHandler::ConfigurationHandler(QObject *parent) :
|
|
JsonHandler(parent)
|
|
{
|
|
|
|
}
|
|
|
|
QString ConfigurationHandler::nameSpace() const
|
|
{
|
|
return "Configuration";
|
|
}
|