SourcePP
Several modern C++20 libraries for sanely parsing Valve's formats.
Loading...
Searching...
No Matches
Attribute.h
Go to the documentation of this file.
1#pragma once
2
3#include <sourcepp/Macros.h>
4
5namespace vpkpp {
6
7enum class Attribute {
8 NONE = 0,
9 ARCHIVE_INDEX = 1 << 0,
10 LENGTH = 1 << 1,
11 CRC32 = 1 << 2,
12 PCK_MD5 = 1 << 3,
13 VPK_PRELOADED_DATA = 1 << 4,
14};
16
17} // namespace vpkpp
#define SOURCEPP_BITFLAGS_ENUM(Enum)
Defines bitwise operators for an enum or enum class.
Definition: Macros.h:26
Definition: Attribute.h:5
Attribute
Definition: Attribute.h:7