Dynalib Utils
ErrorContext.h
Go to the documentation of this file.
1 //
2 // Created by Ken Kopelson on 8/11/17.
3 //
4 
5 #ifndef ROBOCHEFEMULATOR_ERRORCONTEXT_H
6 #define ROBOCHEFEMULATOR_ERRORCONTEXT_H
7 
8 
9 #include "../String.h"
10 
11 struct ErrorContext {
13  int errorLine = 0;
14  int errorLineStart = 0;
15  int errorStart = 0;
16  int errorEnd = 0;
17 };
18 
19 
20 #endif //ROBOCHEFEMULATOR_ERRORCONTEXT_H
int errorStart
Definition: ErrorContext.h:15
Definition: String.h:60
Definition: ErrorContext.h:11
int errorEnd
Definition: ErrorContext.h:16
String errorMsg
Definition: ErrorContext.h:12
int errorLineStart
Definition: ErrorContext.h:14
int errorLine
Definition: ErrorContext.h:13