LeviLamina
Loading...
Searching...
No Matches
FileStorageAreaObserver.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/Observer.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Core { class PathView; }
11namespace Core { class SingleThreadedLock; }
12// clang-format on
13
14namespace Core {
15
16class FileStorageAreaObserver : public ::Core::Observer<::Core::FileStorageAreaObserver, ::Core::SingleThreadedLock> {
17public:
18 // virtual functions
19 // NOLINTBEGIN
20 // vIndex: 2
21 virtual void _onBeginWrites() = 0;
22
23 // vIndex: 3
24 virtual void _onEndWrites() = 0;
25
26 // vIndex: 4
27 virtual void _onWriteFile(::Core::PathView) = 0;
28
29 // vIndex: 5
30 virtual void _onDeleteFile(::Core::PathView) = 0;
31
32 // vIndex: 0
33 virtual ~FileStorageAreaObserver() /*override*/ = default;
34 // NOLINTEND
35
36public:
37 // destructor thunk
38 // NOLINTBEGIN
39
40 // NOLINTEND
41
42public:
43 // virtual function thunks
44 // NOLINTBEGIN
45
46 // NOLINTEND
47};
48
49} // namespace Core
Definition FileStorageAreaObserver.h:16
Definition Observer.h:9
Definition PathView.h:16