Unit PasDoc_Versions

Description

Information about PasDoc and compilers version.

Source: source/component/PasDoc_Versions.pas (line 24).

Overview

Functions and Procedures

function COMPILER_NAME: string;
function PASDOC_FULL_INFO: string;

Constants

COMPILER_BITS = '32' ;
PASDOC_NAME = 'PasDoc';
PASDOC_DATE = 'snapshot';
PASDOC_VERSION = '0.17.0.snapshot';
PASDOC_NAME_AND_VERSION = PASDOC_NAME + ' ' + PASDOC_VERSION;
PASDOC_HOMEPAGE = 'https://pasdoc.github.io/';

Description

Functions and Procedures

function COMPILER_NAME: string;

Nice compiler name. This is a function only because we can't nicely declare it as a constant. But this behaves like a constant, i.e. every time you call it it returns the same thing (as long as this is the same binary).

Source: source/component/PasDoc_Versions.pas (line 38).

function PASDOC_FULL_INFO: string;

Returns pasdoc name, version, used compiler version, etc.

This is a function only because we can't nicely declare it as a constant. But this behaves like a constant, i.e. every time you call it it returns the same thing (as long as this is the same binary).

Source: source/component/PasDoc_Versions.pas (line 105).

Constants

COMPILER_BITS = '32' ;

This item has no description.

Source: source/component/PasDoc_Versions.pas (line 41).

PASDOC_NAME = 'PasDoc';

This item has no description.

Source: source/component/PasDoc_Versions.pas (line 79).

PASDOC_DATE = 'snapshot';

PASDOC_DATE = '2021-02-07';

Source: source/component/PasDoc_Versions.pas (line 92).

PASDOC_VERSION = '0.17.0.snapshot';

This item has no description.

Source: source/component/PasDoc_Versions.pas (line 94).

PASDOC_NAME_AND_VERSION = PASDOC_NAME + ' ' + PASDOC_VERSION;

This item has no description.

Source: source/component/PasDoc_Versions.pas (line 96).

PASDOC_HOMEPAGE = 'https://pasdoc.github.io/';

This item has no description.

Source: source/component/PasDoc_Versions.pas (line 98).


Generated by PasDoc 0.17.0.snapshot.