18 lines
337 B
C++
18 lines
337 B
C++
#pragma once
|
|
|
|
namespace sharp
|
|
{
|
|
struct global_properties
|
|
{
|
|
static const global_properties defaults;
|
|
};
|
|
|
|
void initialize();
|
|
void initialize(const global_properties& flags);
|
|
void uninitialize();
|
|
void re_initialize();
|
|
void re_initialize(const global_properties& flags);
|
|
|
|
bool is_initialized();
|
|
}
|