27 lines
443 B
C++
27 lines
443 B
C++
// 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
|