This commit is contained in:
2023-03-28 10:35:45 +02:00
parent 02b73a4b2f
commit ab60fa7990
39 changed files with 4217 additions and 41 deletions
+20
View File
@@ -0,0 +1,20 @@
#ifndef CCONFIGDATA_H
#define CCONFIGDATA_H
#include "cfilebuffer.h"
class cConfigData
{
public:
cConfigData()
{};
virtual ~cConfigData()
{};
virtual void load(cFileBuffer* buffer ) = 0;
virtual unsigned int save(cFileBuffer* buffer ) = 0;
};
#endif // CCONFIGDATA_H