1 // =================================
 2 // Copyright (c) 2020 Seppo Laakko
 3 // Distributed under the MIT license
 4 // =================================
 5 
 6 #ifndef SNGCM_PARSER_OPERATOR_INCLUDED
 7 #define SNGCM_PARSER_OPERATOR_INCLUDED
 8 #include <stdint.h>
 9 
10 enum class Operator : uint8_t 
11 {
12     none=  0or_and_eqneqlessgreaterlessOrEqgreaterOrEqisasplusplusminusminusplusminusmuldivremnot_bitOrbitXorbitAndshiftLeftshiftRightcomplementderefaddrOf
13 };
14 
15 #endif // SNGCM_PARSER_OPERATOR_INCLUDED