Ceetron Result Calculator Framework
CRCError.h
1 //##################################################################################################
2 //
3 // Ceetron Result Calculator Framework
4 //
5 // --------------------------------------------------------------------------------------------
6 // Copyright (C) 2021, Ceetron AS
7 //##################################################################################################
8 
9 #pragma once
10 
11 #include "CRCString.h"
12 
13 //==================================================================================================
14 //
15 //
16 //
17 //==================================================================================================
18 class CRCError
19 {
20 public:
21  virtual ~CRCError() {}
22 
23  virtual void setError(const CRCString& message) = 0;
24 };
A simple class for handling strings.
Definition: CRCString.h:21
Error object to communicate an error during initialization of the result calculator.
Definition: CRCError.h:18
virtual void setError(const CRCString &message)=0
Notify the host that an error occurred and provide a descrition of the error.