LeviLamina
Loading...
Searching...
No Matches
MigrationDetector.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class TaskResult;
8namespace Bedrock::StorageMigration { struct FoundFiles; }
9namespace Bedrock::StorageMigration { struct ManifestData; }
10// clang-format on
11
12namespace Bedrock::StorageMigration {
13
14class MigrationDetector : public ::std::enable_shared_from_this<::Bedrock::StorageMigration::MigrationDetector> {
15public:
16 // virtual functions
17 // NOLINTBEGIN
18 // vIndex: 0
19 virtual ~MigrationDetector() = default;
20
21 // vIndex: 1
22 virtual ::std::shared_ptr<::Bedrock::StorageMigration::FoundFiles> getFoundFiles() const = 0;
23
24 // vIndex: 2
25 virtual void _runDetector(::std::shared_ptr<::Bedrock::StorageMigration::ManifestData>) = 0;
26 // NOLINTEND
27
28public:
29 // destructor thunk
30 // NOLINTBEGIN
31
32 // NOLINTEND
33
34public:
35 // virtual function thunks
36 // NOLINTBEGIN
37
38 // NOLINTEND
39};
40
41} // namespace Bedrock::StorageMigration
Definition MigrationDetector.h:14
Definition TaskResult.h:8