22 lines
469 B
C
22 lines
469 B
C
|
|
// Copyright (c) 2023 Sentry. All Rights Reserved.
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "Interface/SentryHintInterface.h"
|
||
|
|
|
||
|
|
#include "Infrastructure/SentryJavaObjectWrapper.h"
|
||
|
|
|
||
|
|
class SentryHintAndroid : public ISentryHint, public FSentryJavaObjectWrapper
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
SentryHintAndroid();
|
||
|
|
SentryHintAndroid(jobject hint);
|
||
|
|
|
||
|
|
void SetupClassMethods();
|
||
|
|
|
||
|
|
virtual void AddAttachment(TSharedPtr<ISentryAttachment> attachment) override;
|
||
|
|
|
||
|
|
private:
|
||
|
|
FSentryJavaMethod AddAttachmentMethod;
|
||
|
|
};
|