Initial commit

This commit is contained in:
2019-11-26 15:23:54 -06:00
commit adf531607d
18 changed files with 1537 additions and 0 deletions

22
src/errortype.h Normal file
View File

@@ -0,0 +1,22 @@
/*
* ErrorType.h
*
* Created on: May 23, 2019
* Author: nathan
*/
#ifndef SRC_ERRORTYPE_H_
#define SRC_ERRORTYPE_H_
enum class ErrorType
{
none,
outOfBounds,
illegalState,
outOfMemory,
invalidArgument
};
#endif /* SRC_ERRORTYPE_H_ */