32 lines
		
	
	
		
			957 B
		
	
	
	
		
			Objective-C
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			957 B
		
	
	
	
		
			Objective-C
		
	
	
	
	
	
// Copyright (c) 2022 Sentry. All Rights Reserved.
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include "Interface/SentryBreadcrumbInterface.h"
 | 
						|
 | 
						|
@class SentryBreadcrumb;
 | 
						|
 | 
						|
class SentryBreadcrumbApple : public ISentryBreadcrumb
 | 
						|
{
 | 
						|
public:
 | 
						|
	SentryBreadcrumbApple();
 | 
						|
	SentryBreadcrumbApple(SentryBreadcrumb* breadcrumb);
 | 
						|
	virtual ~SentryBreadcrumbApple() override;
 | 
						|
 | 
						|
	SentryBreadcrumb* GetNativeObject();
 | 
						|
 | 
						|
	virtual void SetMessage(const FString& message) override;
 | 
						|
	virtual FString GetMessage() const override;
 | 
						|
	virtual void SetType(const FString& type) override;
 | 
						|
	virtual FString GetType() const override;
 | 
						|
	virtual void SetCategory(const FString& category) override;
 | 
						|
	virtual FString GetCategory() const override;
 | 
						|
	virtual void SetData(const TMap<FString, FString>& data) override;
 | 
						|
	virtual TMap<FString, FString> GetData() const override;
 | 
						|
	virtual void SetLevel(ESentryLevel level) override;
 | 
						|
	virtual ESentryLevel GetLevel() const override;
 | 
						|
 | 
						|
private:
 | 
						|
	SentryBreadcrumb* BreadcrumbApple;
 | 
						|
};
 |