LIEF: Library to Instrument Executable Formats
Version 1.0.0
Toggle main menu visibility
Loading...
Searching...
No Matches
lief-install
x86_64
static
include
LIEF
PE
signature
attributes
ContentType.hpp
Go to the documentation of this file.
1
/* Copyright 2017 - 2026 R. Thomas
2
* Copyright 2017 - 2026 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_CONTENT_TYPE_H
17
#define LIEF_PE_ATTRIBUTES_CONTENT_TYPE_H
18
#include <memory>
19
20
#include "
LIEF/visibility.h
"
21
#include "
LIEF/PE/signature/Attribute.hpp
"
22
#include "
LIEF/PE/signature/types.hpp
"
23
24
25
namespace
LIEF
{
26
class
VectorStream
;
27
namespace
PE
{
28
37
class
LIEF_API
ContentType
:
public
Attribute
{
38
39
friend
class
Parser
;
40
friend
class
SignatureParser
;
41
42
public
:
43
ContentType
() :
44
Attribute
(
Attribute
::
TYPE
::CONTENT_TYPE)
45
{}
46
ContentType
(
oid_t
oid
) :
47
Attribute
(
Attribute
::
TYPE
::CONTENT_TYPE),
48
oid_{std::move(
oid
)}
49
{}
50
ContentType
(
const
ContentType
&) =
default
;
51
ContentType
&
operator=
(
const
ContentType
&) =
default
;
52
54
const
oid_t
&
oid
()
const
{
55
return
oid_;
56
}
57
59
std::string
print
()
const override
;
60
61
std::unique_ptr<Attribute>
clone
()
const override
{
62
return
std::unique_ptr<Attribute>(
new
ContentType
{*
this
});
63
}
64
65
static
bool
classof
(
const
Attribute
* attr) {
66
return
attr->
type
() ==
Attribute::TYPE::CONTENT_TYPE
;
67
}
68
69
void
accept
(
Visitor
& visitor)
const override
;
70
~ContentType
()
override
=
default
;
71
72
private
:
73
oid_t
oid_;
74
};
75
76
}
77
}
78
79
#endif
Attribute.hpp
types.hpp
LIEF::PE::Attribute::TYPE
TYPE
Definition
PE/signature/Attribute.hpp:35
LIEF::PE::Attribute::TYPE::CONTENT_TYPE
@ CONTENT_TYPE
Definition
PE/signature/Attribute.hpp:37
LIEF::PE::Attribute::Attribute
Attribute()=delete
LIEF::PE::Attribute::type
virtual TYPE type() const
Concrete type of the attribute.
Definition
PE/signature/Attribute.hpp:62
LIEF::PE::ContentType::ContentType
ContentType(oid_t oid)
Definition
ContentType.hpp:46
LIEF::PE::ContentType::classof
static bool classof(const Attribute *attr)
Definition
ContentType.hpp:65
LIEF::PE::ContentType::operator=
ContentType & operator=(const ContentType &)=default
LIEF::PE::ContentType::~ContentType
~ContentType() override=default
LIEF::PE::ContentType::ContentType
ContentType(const ContentType &)=default
LIEF::PE::ContentType::SignatureParser
friend class SignatureParser
Definition
ContentType.hpp:40
LIEF::PE::ContentType::print
std::string print() const override
Print information about the attribute.
LIEF::PE::ContentType::oid
const oid_t & oid() const
OID as described in RFC #2985.
Definition
ContentType.hpp:54
LIEF::PE::ContentType::Parser
friend class Parser
Definition
ContentType.hpp:39
LIEF::PE::ContentType::ContentType
ContentType()
Definition
ContentType.hpp:43
LIEF::PE::ContentType::accept
void accept(Visitor &visitor) const override
LIEF::PE::ContentType::clone
std::unique_ptr< Attribute > clone() const override
Definition
ContentType.hpp:61
LIEF::VectorStream
Definition
VectorStream.hpp:29
LIEF::Visitor
Definition
Visitor.hpp:210
LIEF::PE
Namespace related to the LIEF's PE module.
Definition
Abstract/Header.hpp:32
LIEF::PE::oid_t
std::string oid_t
Definition
PE/signature/types.hpp:23
LIEF
LIEF namespace.
Definition
Abstract/Binary.hpp:40
visibility.h
LIEF_API
#define LIEF_API
Definition
visibility.h:41
Generated by
1.17.0