22 lines
350 B
C++
22 lines
350 B
C++
/***
|
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: IIPCLogger.hpp
|
|
Date: 2022-06-17
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
namespace Aurora::IO::IPC
|
|
{
|
|
struct IPCPipe;
|
|
}
|
|
|
|
|
|
namespace Aurora::Logging
|
|
{
|
|
struct IIPCLogger : IBasicSink
|
|
{
|
|
virtual AuSPtr<IO::IPC::IPCPipe> ToPipe() = 0;
|
|
};
|
|
} |