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