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.
wheeldetect/src/tpMain/CamConfig.h

22 lines
312 B
C++

#ifndef _H_CAMCONFIG_H_
#define _H_CAMCONFIG_H_
#include "QString"
class CamConfig
{
public:
CamConfig(QString strPath);
~CamConfig();
void init();
void save();
QString getCamType() const;
QString getCamSerial() const;
private:
QString m_appRoot;
QString m_CamType;
QString m_CamSerial;
};
#endif