Program Listing for File ProviderType.h

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

// Copyright (C) AcceleratXR, Inc. All rights reserved.
#pragma once

#include "axr.sdk/StringEnum.h"

namespace axr {
namespace sdk {
namespace models {

class ProviderType : public StringEnum<ProviderType>
{
public:
    static const ProviderType* Null;
    static const ProviderType* Stripe;

private:
    ProviderType(const utility::char_t* value)
        : StringEnum(value)
    {
    }
};

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