Program Listing for File Statistic.h

Return to documentation for file (axr.sdk/models/Statistic.h)

// Copyright (C) AcceleratXR, Inc. All rights reserved.
//
// Author: Jean-Philippe Steinmetz <info@acceleratxr.com>
//
// NOTE: This file was auto generated by the AcceleratXR code generator.
// https://gitlab.com/AcceleratXR/Core/code_generator.git
#pragma once

#include "axr.sdk/ModelBase.h"

#include <cpprest/details/basic_types.h>
#include <vector>

namespace axr {
namespace sdk {
namespace models {

class Statistic : public ModelBase
{
public:
    Statistic() {}
    Statistic(const Statistic& value) : ModelBase(value) {}
    Statistic(Statistic&& value) : ModelBase(value) {}
    virtual ~Statistic() {}

    // ModelBase overrides

    static const utility::char_t* ClassName()
    {
        return _XPLATSTR("axr::sdk::models::Statistic");
    }

    void Validate() override;

    // Statistic members

    utility::string_t GetName() const;

    Statistic& SetName(const utility::string_t& value);

    Variant GetValue() const;

    Statistic& SetValue(const Variant& value);
};

} // namespace models
} // namespace axr
} // namespace sdk