You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
28 lines
539 B
C++
28 lines
539 B
C++
// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
DECLARE_LOG_CATEGORY_EXTERN(LogTestPAL, Verbose, All);
|
|
|
|
class FParent
|
|
{
|
|
/** Children to be controlled */
|
|
TArray< FProcHandle > Children;
|
|
|
|
/** Total children to spawn */
|
|
int NumTotalChildren;
|
|
|
|
/** Max children at once */
|
|
int MaxChildrenAtOnce;
|
|
|
|
/** Launches the child, returns the launched process handle. */
|
|
FProcHandle Launch();
|
|
|
|
public:
|
|
|
|
/** Spawns the children one by one */
|
|
void Run();
|
|
|
|
FParent(int InNumTotalChildren, int InMaxChildrenAtOnce);
|
|
};
|