zworld-em/Plugins/sentry-unreal/Source/Sentry/Private/Desktop/SentryIdDesktop.h

27 lines
443 B
C
Raw Normal View History

2025-05-11 22:07:21 +08:00
// Copyright (c) 2022 Sentry. All Rights Reserved.
#pragma once
#include "Convenience/SentryInclude.h"
#include "Interface/SentryIdInterface.h"
#if USE_SENTRY_NATIVE
class SentryIdDesktop : public ISentryId
{
public:
SentryIdDesktop();
SentryIdDesktop(sentry_uuid_t id);
virtual ~SentryIdDesktop() override;
sentry_uuid_t GetNativeObject();
virtual FString ToString() const override;
private:
sentry_uuid_t IdDesktop;
};
#endif