zworld-em/Plugins/sentry-unreal/Source/Sentry/Private/Apple/SentryIdApple.h

22 lines
367 B
C
Raw Permalink Normal View History

2025-05-11 22:07:21 +08:00
// Copyright (c) 2022 Sentry. All Rights Reserved.
#pragma once
#include "Interface/SentryIdInterface.h"
@class SentryId;
class SentryIdApple : public ISentryId
{
public:
SentryIdApple();
SentryIdApple(SentryId* id);
virtual ~SentryIdApple() override;
SentryId* GetNativeObject();
virtual FString ToString() const override;
private:
SentryId* IdApple;
};