Class TVersion

Unit

Declaration

type TVersion = class(TInterfacedObject, IVersion)

Description

Client version

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);
Public class function Deserialize(Reader: TEoReader): TVersion;

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 TVersion object to the provided TEoWriter.

Parameters
Writer
The writer that this object will be serialized to
Public class function Deserialize(Reader: TEoReader): TVersion;

Deserializes an instance of TVersion from the provided TEoReader.

Parameters
Reader
The reader that the object will be deserialized from
Returns

The deserialized object

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.