trying to fuse header / inc

This commit is contained in:
2021-07-19 16:25:51 +02:00
parent 7849b8e391
commit d47906e833
767 changed files with 117 additions and 135 deletions

View File

@ -0,0 +1,27 @@
#ifndef INTERNALERRORREPORTERIF_H_
#define INTERNALERRORREPORTERIF_H_
class InternalErrorReporterIF {
public:
virtual ~InternalErrorReporterIF() {
}
/**
* Thread safe
*/
virtual void queueMessageNotSent() = 0;
/**
* Thread safe
*/
virtual void lostTm() = 0;
/**
* Thread safe
*/
virtual void storeFull() = 0;
};
#endif /* INTERNALERRORREPORTERIF_H_ */