CedaSdkVersion.h

// CedaSdkVersion.h
//
// Author David Barrett-Lennard
// (C)opyright Cedanet Pty Ltd 2022

@import "Object.h"

namespace ceda
{
    $model+ CedaSdkVersion
    {
        uint8 Major;
        uint8 Minor;
        uint8 Patch;
        string8 BuildTime;
        bool Debug;
    };

    $function+ CedaSdkVersion GetCedaSdkVersion();
}