LeviLamina
Loading...
Searching...
No Matches
WindowStateStorage.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // virtual functions
8 // NOLINTBEGIN
9 // vIndex: 0
10 virtual ~WindowStateStorage() = default;
11
12 // vIndex: 1
13 virtual void writeRect(::tagRECT const&) = 0;
14
15 // vIndex: 2
16 virtual void writeShowCommand(int) = 0;
17
18 // vIndex: 3
19 virtual bool readRect(::tagRECT&) const = 0;
20
21 // vIndex: 4
22 virtual bool readShowCommand(int&) const = 0;
23 // NOLINTEND
24
25public:
26 // virtual function thunks
27 // NOLINTBEGIN
28
29 // NOLINTEND
30};
Definition WindowStateStorage.h:5