You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
334 B
C
19 lines
334 B
C
|
4 years ago
|
#ifndef _LPDESIGNERCONFIG_H_
|
||
|
|
#define _LPDESIGNERCONFIG_H_
|
||
|
|
|
||
|
|
#include <QObject>
|
||
|
|
#include "lp_singleton_base.h"
|
||
|
|
|
||
|
|
class lpdesignerConfig : public QObject,public lp_singleton_base<lpdesignerConfig>
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
lpdesignerConfig(QObject *parent = 0);
|
||
|
|
~lpdesignerConfig();
|
||
|
|
void readConfig();
|
||
|
|
QString m_SaveImgDirPath;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|