AuroraRuntime/Include/Aurora/IPC/IExportableIPC.hpp

16 lines
279 B
C++
Executable File

/***
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: IExportableIPC.hpp
Date: 2022-4-14
Author: Reece
***/
#pragma once
namespace Aurora::IPC
{
struct IExportableIPC
{
virtual AuString ExportToString() = 0;
};
}