26 lines
425 B
C++
26 lines
425 B
C++
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the MIT License. See License.txt in the project root for license information.
|
|
|
|
#include "stdafx.h"
|
|
|
|
#pragma once
|
|
class IOutputManager
|
|
{
|
|
public:
|
|
virtual
|
|
HRESULT
|
|
Start() = 0;
|
|
|
|
virtual
|
|
~IOutputManager() {};
|
|
|
|
virtual
|
|
void
|
|
NotifyStartupComplete() = 0;
|
|
|
|
virtual
|
|
bool
|
|
GetStdOutContent(STRA* struStdOutput) = 0;
|
|
};
|
|
|