Skeleton for new error model written

This commit is contained in:
Matthias Jung
2015-07-29 22:52:55 +02:00
parent da3e0c2d6e
commit 05d0536ff0
2 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
#include "errormodel.h"
errorModel::errorModel()
{
}

View File

@@ -0,0 +1,10 @@
#ifndef ERRORMODEL_H
#define ERRORMODEL_H
class errorModel
{
public:
errorModel();
};
#endif // ERRORMODEL_H