forked from Alepha/Alepha
22 lines
412 B
C++
22 lines
412 B
C++
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;
|
|
}
|