zworld-em/Plugins/sentry-unreal/Source/Sentry/Private/Android/SentryIdAndroid.h
2025-05-11 22:07:21 +08:00

21 lines
415 B
C++

// Copyright (c) 2022 Sentry. All Rights Reserved.
#pragma once
#include "Interface/SentryIdInterface.h"
#include "Infrastructure/SentryJavaObjectWrapper.h"
class SentryIdAndroid : public ISentryId, public FSentryJavaObjectWrapper
{
public:
SentryIdAndroid();
SentryIdAndroid(jobject id);
void SetupClassMethods();
virtual FString ToString() const override;
private:
FSentryJavaMethod ToStringMethod;
};