-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathmi_include_impl.hpp
More file actions
47 lines (32 loc) · 1.01 KB
/
mi_include_impl.hpp
File metadata and controls
47 lines (32 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#pragma once
#include "model_includes/api/mi_include.hpp"
#include <memory>
//------------------------------------------------------------------------------
namespace model_includes
{
//------------------------------------------------------------------------------
class IncludeImpl final : public Include
{
public:
using IncludeLocationPtr = std::unique_ptr< IncludeLocation >;
IncludeImpl(
IncludeLocationPtr && _location,
const File & _sourceFile,
const File & _destinationFile,
IncludeStatus _status,
IncludeType _type );
~IncludeImpl();
const IncludeLocation & getLocation() const override;
const File & getSourceFile() const override;
const File & getDestinationFile() const override;
IncludeStatus getStatus() const override;
IncludeType getType() const override;
private:
IncludeLocationPtr m_location;
const File & m_sourceFile;
const File & m_destinationFile;
IncludeStatus m_status;
IncludeType m_type;
};
//------------------------------------------------------------------------------
}