LeviLamina
Loading...
Searching...
No Matches
WebviewError.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // WebviewError inner types define
8 enum class Type : uchar {
9 Unknown = 0,
10 NetworkError = 1,
11 OutOfMemory = 2,
12 };
13
14public:
15 // member variables
16 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 WebviewError& operator=(WebviewError const&);
27};
Definition WebviewError.h:5
Definition Alias.h:14