SMTK  @SMTK_VERSION@
Simulation Modeling Tool Kit
InfixExpressionError.h
Go to the documentation of this file.
1 //=========================================================================
2 // Copyright (c) Kitware, Inc.
3 // All rights reserved.
4 // See LICENSE.txt for details.
5 //
6 // This software is distributed WITHOUT ANY WARRANTY; without even
7 // the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
8 // PURPOSE. See the above copyright notice for more information.
9 //=========================================================================
10 #ifndef smtk_common_InfixExpressionError_h
11 #define smtk_common_InfixExpressionError_h
12 
14 namespace smtk
15 {
16 namespace common
17 {
18 
19 enum class InfixExpressionError
20 {
21  ERROR_NONE = 0,
22  ERROR_INVALID_TOKEN = 1,
23  ERROR_INVALID_SYNTAX = 2,
24  ERROR_UNKNOWN_FUNCTION = 3,
25  ERROR_UNKNOWN_OPERATOR = 4,
26  ERROR_MATH_ERROR = 5,
27  ERROR_SUBEVALUATION_FAILED = 6
28 };
29 
30 } // namespace common
31 } // namespace smtk
32 
33 #endif // smtk_common_InfixExpressionError_h
smtk
The main namespace for the Simulation Modeling Tool Kit (SMTK).
Definition: doc.h:33