LIEF: Library to Instrument Executable Formats Version 0.17.0
Loading...
Searching...
No Matches
MsSpcStatementType.hpp
Go to the documentation of this file.
1/* Copyright 2017 - 2025 R. Thomas
2 * Copyright 2017 - 2025 Quarkslab
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16#ifndef LIEF_PE_ATTRIBUTES_MS_SPC_STATEMENT_TYPE_H
17#define LIEF_PE_ATTRIBUTES_MS_SPC_STATEMENT_TYPE_H
18
19#include "LIEF/visibility.h"
22
23namespace LIEF {
24namespace PE {
25
35
36 friend class Parser;
37 friend class SignatureParser;
38
39 public:
45
48
49 std::unique_ptr<Attribute> clone() const override {
50 return std::unique_ptr<Attribute>(new MsSpcStatementType{*this});
51 }
52
57 const oid_t& oid() const {
58 return oid_;
59 }
60
62 std::string print() const override;
63
64 static bool classof(const Attribute* attr) {
66 }
67
68 void accept(Visitor& visitor) const override;
69 ~MsSpcStatementType() override = default;
70
71 private:
72 oid_t oid_;
73};
74
75}
76}
77
78#endif
TYPE
Definition PE/signature/Attribute.hpp:35
@ MS_SPC_STATEMENT_TYPE
Definition PE/signature/Attribute.hpp:46
virtual TYPE type() const
Concrete type of the attribute.
Definition PE/signature/Attribute.hpp:62
const oid_t & oid() const
According to the documentation:
Definition MsSpcStatementType.hpp:57
std::unique_ptr< Attribute > clone() const override
Definition MsSpcStatementType.hpp:49
friend class SignatureParser
Definition MsSpcStatementType.hpp:37
MsSpcStatementType(const MsSpcStatementType &)=default
MsSpcStatementType & operator=(const MsSpcStatementType &)=default
void accept(Visitor &visitor) const override
friend class Parser
Definition MsSpcStatementType.hpp:36
std::string print() const override
Print information about the attribute.
MsSpcStatementType(oid_t oid)
Definition MsSpcStatementType.hpp:41
static bool classof(const Attribute *attr)
Definition MsSpcStatementType.hpp:64
~MsSpcStatementType() override=default
Definition Visitor.hpp:210
Namespace related to the LIEF's PE module.
Definition Abstract/Header.hpp:32
std::string oid_t
Definition PE/signature/types.hpp:23
LIEF namespace.
Definition Abstract/Binary.hpp:40
#define LIEF_API
Definition visibility.h:41