mirror of
https://github.com/UOX3DevTeam/UOX3
synced 2026-08-13 12:27:04 -04:00
27 lines
982 B
C++
27 lines
982 B
C++
//o-----------------------------------------------------------------------------------------------o
|
|
//| File - cVersionClass.h
|
|
//| Date - 10/17/2002
|
|
//o-----------------------------------------------------------------------------------------------o
|
|
//| Purpose -
|
|
//o-----------------------------------------------------------------------------------------------o
|
|
#ifndef __CVERSIONCLASS_H__
|
|
#define __CVERSIONCLASS_H__
|
|
|
|
class CVersionClass
|
|
{
|
|
public:
|
|
CVersionClass();
|
|
~CVersionClass();
|
|
static std::string GetVersion( void );
|
|
static std::string GetBuild( void );
|
|
static std::string GetRealBuild( void );
|
|
static std::string GetScriptVersion( void );
|
|
static std::string GetCharacterVersion( void );
|
|
static std::string GetItemVersion( void );
|
|
static std::string GetProductName( void );
|
|
static std::string GetName( void );
|
|
static std::string GetEmail( void );
|
|
static std::string GetProgrammers( void );
|
|
};
|
|
|
|
#endif // __CVERSIONCLASS_H__
|