Fix clang warning: class 'p3Config' was previously declared as a struct

/libretroshare/src/retroshare/rsplugin.h:77: warning: class 'p3Config'
was previously declared as a struct [-Wmismatched-tags]
class p3Config;
This commit is contained in:
Phenom 2017-07-17 11:38:53 +02:00 committed by csoler
parent 8dbb0d61af
commit 896ed3e992

View File

@ -213,8 +213,9 @@ class p3ConfigMgr
* Aimed at rs services that uses RsItem config data, provide a way for RS
* services to save and load particular configurations as items.
*/
struct p3Config : pqiConfig
class p3Config : public pqiConfig
{
public:
p3Config();
virtual bool loadConfiguration(RsFileHash &loadHash);