Files
UnrealEngine/Engine/Source/Runtime/VerseCompiler/Public/uLang/Toolchain/CommandLine.h
2025-05-18 13:04:45 +08:00

19 lines
434 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "uLang/Common/Common.h"
#include "uLang/CompilerPasses/CompilerTypes.h" // for SCommandLine
namespace uLang
{
namespace CommandLine
{
VERSECOMPILER_API void Init(int ArgC, char* ArgV[]);
VERSECOMPILER_API void Init(const SCommandLine& Rhs);
VERSECOMPILER_API bool IsSet();
VERSECOMPILER_API const SCommandLine& Get();
}
} // namespace uLang