LIEF: Library to Instrument Executable Formats Version 0.16.0
Loading...
Searching...
No Matches
PDB/types/ClassLike.hpp
Go to the documentation of this file.
1/* Copyright 2022 - 2024 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_CLASS_H
16#define LIEF_PDB_TYPE_CLASS_H
17
18#include "LIEF/visibility.h"
19#include "LIEF/PDB/Type.hpp"
22#include "LIEF/iterators.hpp"
23
24#include <type_traits>
25
26namespace LIEF {
27namespace pdb {
28namespace types {
29
32class LIEF_API ClassLike : public Type {
33 public:
34 using Type::Type;
35
38
41
43 std::string unique_name() const;
44
46 std::string name() const;
47
50
53
56 uint64_t size() const;
57
58 template <class T>
59 static bool classof(const T*, typename std::enable_if<std::is_base_of<ClassLike, T>::value>::type* = 0)
60 {
61 return true;
62 }
63
64 ~ClassLike() override;
65};
66
67
70 public:
71 using ClassLike::ClassLike;
72
73 static bool classof(const Type* type) {
74 return type->kind() == Type::KIND::STRUCTURE;
75 }
76
77 ~Structure() override;
78};
79
81class LIEF_API Class : public ClassLike {
82 public:
83 using ClassLike::ClassLike;
84
85 static bool classof(const Type* type) {
86 return type->kind() == Type::KIND::CLASS;
87 }
88
89 ~Class() override;
90};
91
94 public:
95 using ClassLike::ClassLike;
96
97 static bool classof(const Type* type) {
98 return type->kind() == Type::KIND::INTERFACE;
99 }
100
101 ~Interface() override;
102};
103
104
105}
106}
107}
108#endif
109
110
Definition iterators.hpp:486
This is the base class for any PDB type.
Definition PDB/Type.hpp:30
KIND kind() const
This class abstracts the following PDB types: LF_STRUCTURE, LF_INTERFACE, LF_CLASS or LF_UNION.
Definition PDB/types/ClassLike.hpp:32
uint64_t size() const
Size of the type including all its attributes. This size should match the sizeof(....
methods_iterator methods() const
Iterator over the different methods implemented in this class-type type.
static bool classof(const T *, typename std::enable_if< std::is_base_of< ClassLike, T >::value >::type *=0)
Definition PDB/types/ClassLike.hpp:59
std::string unique_name() const
Mangled type name.
attributes_iterator attributes() const
Iterator over the different attributes defined in this class-like type.
std::string name() const
Demangled type name.
Interface for the LF_CLASS PDB type.
Definition PDB/types/ClassLike.hpp:81
static bool classof(const Type *type)
Definition PDB/types/ClassLike.hpp:85
Interface for the LF_INTERFACE PDB type.
Definition PDB/types/ClassLike.hpp:93
static bool classof(const Type *type)
Definition PDB/types/ClassLike.hpp:97
Interface for the LF_STRUCTURE PDB type.
Definition PDB/types/ClassLike.hpp:69
static bool classof(const Type *type)
Definition PDB/types/ClassLike.hpp:73
LIEF namespace.
Definition Abstract/Binary.hpp:32
#define LIEF_API
Definition visibility.h:41