class MAGES::Recorder::StartPacket

Overview

Header packet for the recording. More…

class StartPacket: public MAGES::Recorder::Packet
{
public:
    // properties

    int Version;
    CompressionMethod Compression;
    override PacketType Type;
    double Rtss;

    // methods

    StartPacket(int version, CompressionMethod compression, long frame, double rtss);
};

Inherited Members

public:
    // properties

    PacketType Type;

Detailed Documentation

Header packet for the recording.

Properties

int Version

Gets the version of the packet.

CompressionMethod Compression

Gets the compression method used for the packet.

double Rtss

Gets the RTSS of the packet.

Methods

StartPacket(int version, CompressionMethod compression, long frame, double rtss)

Initializes a new instance of the StartPacket class.

Parameters:

version

The version.

compression

The compression method.

frame

The current frame number.

rtss

The real time since startup.