Files
UnrealEngineUWP/Engine/Source/Runtime/Online/HTTP/Public/HttpPackage.h
Ben Marsh 20bf0eb6a1 Updating copyright notices to 2017 (copying from //Tasks/UE4/Dev-Copyright-2017).
#rb none
#lockdown Nick.Penwarden

[CL 3226823 by Ben Marsh in Main branch]
2016-12-08 08:52:44 -05:00

14 lines
411 B
C

// Copyright 1998-2017 Epic Games, Inc. All Rights Reserved.
// Can't be #pragma once because other modules may define PACKAGE_SCOPE
// Intended to be the last include in an exported class definition
// Properly defines some members as "public to the module" vs "private to the consumer/user"
#undef PACKAGE_SCOPE
#ifdef HTTP_PACKAGE
#define PACKAGE_SCOPE public
#else
#define PACKAGE_SCOPE protected
#endif