LIEF: Library to Instrument Executable Formats Version 1.0.0
Loading...
Searching...
No Matches
PDB/types/Enum.hpp
Go to the documentation of this file.
1/* Copyright 2022 - 2026 R. Thomas
2 *
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15#ifndef LIEF_PDB_TYPE_ENUM_H
16#define LIEF_PDB_TYPE_ENUM_H
17
18#include "LIEF/visibility.h"
19#include "LIEF/PDB/Type.hpp"
20
21namespace LIEF {
22namespace pdb {
23namespace types {
24
25namespace details {
26class EnumEntry;
27}
28
30class LIEF_API Enum : public Type {
31 public:
32 template<typename... Args,
33 typename = typename std::
34 enable_if<std::is_constructible<Type, Args&&...>::value>::type>
35 Enum(Args&&... args) :
36 Type(std::forward<Args>(args)...) {}
37
41 public:
42 Entry(std::unique_ptr<details::EnumEntry> impl);
43 Entry(Entry&& other) noexcept;
44 Entry& operator=(Entry&& other) noexcept;
45
47 std::string name() const;
48
50 int64_t value() const;
51
53
54 private:
55 std::unique_ptr<details::EnumEntry> impl_;
56 };
57
59 std::string unique_name() const;
60
62 std::vector<Entry> entries() const;
63
65 const Type* underlying_type() const;
66
68 optional<Entry> find_entry(int64_t value) const;
69
70 static bool classof(const Type* type) {
71 return type->kind() == Type::KIND::ENUM;
72 }
73
74 ~Enum() override;
75
76 protected:
77 mutable std::unique_ptr<Type> underlying_;
78};
79
80}
81}
82}
83#endif
Definition optional.hpp:23
Type(std::unique_ptr< details::Type > impl)
@ ENUM
Definition PDB/Type.hpp:90
KIND kind() const
Entry(Entry &&other) noexcept
int64_t value() const
Enum entry's value (if any).
Entry & operator=(Entry &&other) noexcept
Entry(std::unique_ptr< details::EnumEntry > impl)
std::string name() const
Enum entry's name.
std::string unique_name() const
Enum's mangled name.
std::vector< Entry > entries() const
Return the different entries associated with this enum.
optional< Entry > find_entry(int64_t value) const
Try to find the enum matching the given value.
const Type * underlying_type() const
The underlying type that is used to encode this enum.
Enum(Args &&... args)
Definition PDB/types/Enum.hpp:35
static bool classof(const Type *type)
Definition PDB/types/Enum.hpp:70
Definition PDB/types/Attribute.hpp:30
Definition PDB/types/Array.hpp:23
Definition BuildMetadata.hpp:24
LIEF namespace.
Definition Abstract/Binary.hpp:40
#define LIEF_API
Definition visibility.h:45