Interface IVersion

Unit

Declaration

type IVersion = interface(IInterface)

Description

Client version

Attributes
GUID['{5DB21BD7-3687-5190-A5C6-5492C9C2FFD2}']

Hierarchy

Overview

Methods

Public function _GetByteSize: Cardinal;
Public function _GetMajor: Cardinal;
Public procedure _SetMajor(Major: Cardinal);
Public function _GetMinor: Cardinal;
Public procedure _SetMinor(Minor: Cardinal);
Public function _GetPatch: Cardinal;
Public procedure _SetPatch(Patch: Cardinal);
Public procedure Serialize(Writer: TEoWriter);

Properties

Public property ByteSize: Cardinal read _GetByteSize;
Public property Major: Cardinal read _GetMajor write _SetMajor;
Public property Minor: Cardinal read _GetMinor write _SetMinor;
Public property Patch: Cardinal read _GetPatch write _SetPatch;

Description

Methods

Public function _GetByteSize: Cardinal;

This item has no description.

Public function _GetMajor: Cardinal;

This item has no description.

Public procedure _SetMajor(Major: Cardinal);

This item has no description.

Public function _GetMinor: Cardinal;

This item has no description.

Public procedure _SetMinor(Minor: Cardinal);

This item has no description.

Public function _GetPatch: Cardinal;

This item has no description.

Public procedure _SetPatch(Patch: Cardinal);

This item has no description.

Public procedure Serialize(Writer: TEoWriter);

Serializes this IVersion object to the provided TEoWriter.

Parameters
Writer
The writer that this object will be serialized to

Properties

Public property ByteSize: Cardinal read _GetByteSize;

The size of the data that this object was deserialized from.

Note
0 if the instance was not created by the Deserialize method.

Public property Major: Cardinal read _GetMajor write _SetMajor;

Note
Value range is 0-252

Public property Minor: Cardinal read _GetMinor write _SetMinor;

Note
Value range is 0-252

Public property Patch: Cardinal read _GetPatch write _SetPatch;

Note
Value range is 0-252


Generated by PasDoc 0.16.0-snapshot.