56 lines
1.5 KiB
C++
56 lines
1.5 KiB
C++
/*
|
|
* Copyright 2018 Coati Software KG
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef SOURCETRAIL_NODE_KIND_H
|
|
#define SOURCETRAIL_NODE_KIND_H
|
|
|
|
namespace sourcetrail
|
|
{
|
|
/**
|
|
* Enum providing all possible values for kinds of nodes that can be stored to the Sourcetrail database.
|
|
*/
|
|
enum NodeKind
|
|
{
|
|
NODE_UNKNOWN = 1 << 0,
|
|
NODE_TYPE = 1 << 1,
|
|
NODE_BUILTIN_TYPE = 1 << 2,
|
|
NODE_MODULE = 1 << 3,
|
|
NODE_NAMESPACE = 1 << 4,
|
|
NODE_PACKAGE = 1 << 5,
|
|
NODE_STRUCT = 1 << 6,
|
|
NODE_CLASS = 1 << 7,
|
|
NODE_INTERFACE = 1 << 8,
|
|
NODE_ANNOTATION = 1 << 9,
|
|
NODE_GLOBAL_VARIABLE = 1 << 10,
|
|
NODE_FIELD = 1 << 11,
|
|
NODE_FUNCTION = 1 << 12,
|
|
NODE_METHOD = 1 << 13,
|
|
NODE_ENUM = 1 << 14,
|
|
NODE_ENUM_CONSTANT = 1 << 15,
|
|
NODE_TYPEDEF = 1 << 16,
|
|
NODE_TEMPLATE_PARAMETER = 1 << 17,
|
|
NODE_TYPE_PARAMETER = 1 << 18,
|
|
NODE_FILE = 1 << 19,
|
|
NODE_MACRO = 1 << 20,
|
|
NODE_UNION = 1 << 21
|
|
};
|
|
|
|
int nodeKindToInt(NodeKind v);
|
|
NodeKind intToNodeKind(int v);
|
|
}
|
|
|
|
#endif // SOURCETRAIL_NODE_KIND_H
|