LeviLamina
Loading...
Searching...
No Matches
LevelListCacheObserver.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 SingleThreadedLock; }
11// clang-format on
12
13class LevelListCacheObserver : public ::Core::Observer<::LevelListCacheObserver, ::Core::SingleThreadedLock> {
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 // vIndex: 2
18 virtual void onLevelAdded(::std::string const&);
19
20 // vIndex: 3
21 virtual void onLevelUpdated(::std::string const&);
22
23 // vIndex: 4
24 virtual void onLevelDeleted(::std::string const&);
25
26 // vIndex: 5
27 virtual void onSummaryUpdated(::std::string const&);
28
29 // vIndex: 6
30 virtual void onStorageChanged();
31
32 // vIndex: 0
33 virtual ~LevelListCacheObserver() /*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};
Definition Observer.h:9
Definition LevelListCacheObserver.h:13