CodeSonar C++ API
[For improved navigation, enable JavaScript.]
cs_xform_operator_defs.hpp
Go to the documentation of this file.
1 
2 /*
3  * Copyright (c) 2023, an unpublished work by CodeSecure, Inc.
4  * ALL RIGHTS RESERVED
5  *
6  * Copyright (c) 2013-2023, an unpublished work by GrammaTech, Inc.
7  * ALL RIGHTS RESERVED
8  *
9  * This software is furnished under a license and may be used and
10  * copied only in accordance with the terms of such license and the
11  * inclusion of the above copyright notice. This software or any
12  * other copies thereof may not be provided or otherwise made
13  * available to any other person. Title to and ownership of the
14  * software is retained by CodeSecure, Inc.
15  */
18 #ifdef CS_CPP_IMPL
19 const xform_operator xform_operator::EQUAL = xform_operator(csxfo_equal);
20 const xform_operator xform_operator::NOT_EQUAL = xform_operator(csxfo_not_equal);
21 const xform_operator xform_operator::GREATER_THAN_OR_EQUAL = xform_operator(csxfo_greater_than_or_equal);
22 const xform_operator xform_operator::LESS_THAN_OR_EQUAL = xform_operator(csxfo_less_than_or_equal);
23 #endif
static const xform_operator GREATER_THAN_OR_EQUAL
the >= operator
Definition: cs_xform_operator_decls.hpp:38
static const xform_operator NOT_EQUAL
the != operator
Definition: cs_xform_operator_decls.hpp:31
static const xform_operator LESS_THAN_OR_EQUAL
the <= operator
Definition: cs_xform_operator_decls.hpp:45
static const xform_operator EQUAL
the == operator
Definition: cs_xform_operator_decls.hpp:24