1
0
forked from Alepha/Alepha

These types might help main declarations cleaner.

This commit is contained in:
2021-10-25 01:58:54 -04:00
parent 4538a8d943
commit 77532ca8ee

24
types.h Normal file
View File

@ -0,0 +1,24 @@
static_assert( __cplusplus > 201700, "C++17 Required" );
#pragma once
#include <Alepha/Alepha.h>
namespace Alepha::Hydrogen
{
inline namespace exports { inline namespace types {} }
namespace detail::types
{
inline namespace exports
{
using argvec_t= const char *const [];
using argcnt_t= int;
}
}
namespace exports::types
{
using namespace detail::types::exports;
}
}