1
0
forked from Alepha/Alepha

Move streamable name to be more like the others.

This commit is contained in:
2024-05-07 22:46:38 -04:00
parent a1137d3a56
commit 3844026429
5 changed files with 24 additions and 24 deletions

21
IOStreams/Streamable.h Normal file
View File

@ -0,0 +1,21 @@
static_assert( __cplusplus > 2020'99 );
#pragma once
#include <Alepha/Alepha.h>
#include "IStreamable.h"
#include "OStreamable.h"
namespace Alepha::Hydrogen::IOStreams ::detail:: Streamable_m
{
inline namespace exports
{
struct Streamable : OStreamable, IStreamable {};
}
}
namespace Alepha::Hydrogen::IOStreams::inline exports::inline Streamable_m
{
using namespace detail::Streamable_m::exports;
}