]> git.proxmox.com Git - ceph.git/blob - ceph/src/jaegertracing/thrift/compiler/cpp/src/thrift/parse/t_enum_value.h
buildsys: switch source download to quincy
[ceph.git] / ceph / src / jaegertracing / thrift / compiler / cpp / src / thrift / parse / t_enum_value.h
1 /*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19
20 #ifndef T_ENUM_VALUE_H
21 #define T_ENUM_VALUE_H
22
23 #include <map>
24 #include <string>
25 #include "thrift/parse/t_doc.h"
26
27 /**
28 * A constant. These are used inside of enum definitions. Constants are just
29 * symbol identifiers that may or may not have an explicit value associated
30 * with them.
31 *
32 */
33 class t_enum_value : public t_doc {
34 public:
35 t_enum_value(std::string name, int value) : name_(name), value_(value) {}
36
37 ~t_enum_value() override = default;
38
39 const std::string& get_name() const { return name_; }
40
41 int get_value() const { return value_; }
42
43 std::map<std::string, std::string> annotations_;
44
45 private:
46 std::string name_;
47 int value_;
48 };
49
50 #endif