﻿/*
 * AppVersion.h
 *
 * Project: xxxxxxxxxx
 * Created: xx.xx.20xx
 * Author:  Ulli
 */ 


#ifndef APPVERSION_H_
#define APPVERSION_H_


#define VERSION_MAJOR 1
#define VERSION_MINOR 0
#define VERSION_BUILD 0

//Zum Zusammenbau der Versionsnummer als String
#define APPVERSION_STR_HELPER(x) #x
#define APPVERSION_STR(x) APPVERSION_STR_HELPER(x)

#define VERSIONSTRING APPVERSION_STR(VERSION_MAJOR) "." APPVERSION_STR(VERSION_MINOR) "." APPVERSION_STR(VERSION_BUILD)

/*

-----------------------------------------------------
Verion 1.0.0: (xx.xx.20xx)
- Basisversion

*/

#endif /* APPVERSION_H_ */


























































































