CodeSonar C++ API
[For improved navigation, enable JavaScript.]
cs_set_kind_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 set_kind set_kind::FAST_VECTOR = set_kind(cs_set_kind_fast_vector);
20 const set_kind set_kind::LIST = set_kind(cs_set_kind_list);
21 const set_kind set_kind::TREE = set_kind(cs_set_kind_tree);
22 const set_kind set_kind::BIT_VECTOR = set_kind(cs_set_kind_bit_vector);
23 const set_kind set_kind::TRIE = set_kind(cs_set_kind_trie);
24 #endif
static const set_kind LIST
list
Definition: cs_set_kind_decls.hpp:31
static const set_kind BIT_VECTOR
bit vector
Definition: cs_set_kind_decls.hpp:45
static const set_kind TREE
tree
Definition: cs_set_kind_decls.hpp:38
static const set_kind TRIE
[CodeSurfer only] trie
Definition: cs_set_kind_decls.hpp:52
static const set_kind FAST_VECTOR
fast vector
Definition: cs_set_kind_decls.hpp:24