Documentation for the Unreal C++ Library
Loading...
Searching...
No Matches
PVROPackage.h
Go to the documentation of this file.
1// Copyright(c) 2023 PixoVR, LLC. All Rights Reserved.
2
3// Can't be #pragma once because other modules may define PACKAGE_SCOPE
4
5// Intended to be the last include in an exported class definition
6// Properly defines some members as "public to the module" vs "private to the consumer/user"
7
8#undef PACKAGE_SCOPE
9#ifdef PIXOVRMULTIPLAYER_PACKAGE
10#define PACKAGE_SCOPE public
11#else
12#define PACKAGE_SCOPE protected
13#endif