cnorxz/src/include/base/config.h
Christian Zimmermann fcf6712912
All checks were successful
ci/woodpecker/manual/woodpecker Pipeline was successful
WIP: doxy
2023-11-01 02:58:05 +01:00

32 lines
450 B
C++

/**
@file include/base/config.h
@brief runtime config functions
Declare functions returning version and configuration infos
Copyright (c) 2022 Christian Zimmermann. All rights reserved.
Mail: chizeta@f3l.de
**/
#ifndef __cxz_config_h__
#define __cxz_config_h__
#include <cstdlib>
#include "base/types.h"
namespace CNORXZ
{
namespace Config
{
String version();
String commit();
String flags();
}
}
#endif