forked from Alepha/Alepha
These types might help main
declarations cleaner.
This commit is contained in:
24
types.h
Normal file
24
types.h
Normal 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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user