CodeSonar C++ API
[For improved navigation, enable JavaScript.]
cs_procedure_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 procedure_kind procedure_kind::USER_DEFINED = procedure_kind(cs_pdg_kind_user_defined);
20 const procedure_kind procedure_kind::GENERATED_INDIRECT = procedure_kind(cs_pdg_kind_generated_indirect);
21 const procedure_kind procedure_kind::UNDEFINED = procedure_kind(cs_pdg_kind_undefined);
22 const procedure_kind procedure_kind::LIBRARY = procedure_kind(cs_pdg_kind_library);
23 const procedure_kind procedure_kind::SYSTEM_INITIALIZATION = procedure_kind(cs_pdg_kind_system_initialization);
24 const procedure_kind procedure_kind::FILE_INITIALIZATION = procedure_kind(cs_pdg_kind_file_initialization);
25 const procedure_kind procedure_kind::HAMMOCK_GENERATED = procedure_kind(cs_pdg_kind_hammock_generated);
26 #endif
static const procedure_kind GENERATED_INDIRECT
Kind generated-indirect
Definition: cs_procedure_kind_decls.hpp:31
static const procedure_kind HAMMOCK_GENERATED
For internal use only.
Definition: cs_procedure_kind_decls.hpp:66
static const procedure_kind FILE_INITIALIZATION
Kind file-initialization
Definition: cs_procedure_kind_decls.hpp:59
static const procedure_kind USER_DEFINED
Kind user-defined
Definition: cs_procedure_kind_decls.hpp:24
static const procedure_kind SYSTEM_INITIALIZATION
Kind system-initialization
Definition: cs_procedure_kind_decls.hpp:52
static const procedure_kind UNDEFINED
Kind undefined
Definition: cs_procedure_kind_decls.hpp:38
static const procedure_kind LIBRARY
Kind library
Definition: cs_procedure_kind_decls.hpp:45