68 lines
1.5 KiB
C++
68 lines
1.5 KiB
C++
/***************************************************************************
|
|
|
|
miniCashConnect
|
|
Copyright © 2022 christoph holzheuer
|
|
c.holzheuer@sourceworx.org
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
#ifndef MINICASHCONNECT_H
|
|
#define MINICASHCONNECT_H
|
|
|
|
|
|
#include <libMiniCash.h>
|
|
|
|
/**
|
|
|
|
@mainpage miniCashConnect
|
|
|
|
@section xxx das Kassensystem 'miniCashConnect'
|
|
|
|
'miniCashConnect' ist ein semi-verteiltes Kassen- und Abrechnungssystem für den KinderKleiderMarkt
|
|
in Kist. Beim Kister Kleidermarkt können Kindersachen günstig verkauft und erworben, sozusagen
|
|
weitergereicht werden.
|
|
so
|
|
|
|
...
|
|
|
|
@warning ein zwei warning
|
|
|
|
@note ein zwei note
|
|
|
|
@bug ein zwei bug
|
|
|
|
@deprecated ein zwei deprecated
|
|
|
|
@todo eins zwei todo
|
|
|
|
@remark eins zwei remark
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
* @brief der namespace miniCash enthält Definitionen und Konstanten.
|
|
*/
|
|
|
|
namespace miniCash
|
|
{
|
|
|
|
/// basics
|
|
[[maybe_unused]] constexpr static const char* appName = "miniCash.connect";
|
|
|
|
|
|
/// misc
|
|
[[maybe_unused]] constexpr static const char* versionConnect = "Version 0.0.40, 14.07.2022";
|
|
[[maybe_unused]] constexpr static const char* copyConnect = "miniCashConnect, © 2022\nc.holzheuer@sourceworx.org ";
|
|
|
|
}
|
|
|
|
#endif // MINICASHCONNECT_H
|