Navigation
API > API/Editor > API/Editor/Kismet
| Name | IReviewCommentAPI |
| Type | class |
| Header File | /Engine/Source/Editor/Kismet/Public/ReviewComments.h |
| Include Path | #include "ReviewComments.h" |
Syntax
class IReviewCommentAPI : public TSharedFromThis< IReviewCommentAPI >
Inheritance Hierarchy
- TSharedFromThis< IReviewCommentAPI > → IReviewCommentAPI
Destructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual ~IReviewCommentAPI() |
ReviewComments.h |
Typedefs
| Name | Type | Remarks | Include Path |
|---|---|---|---|
| OnEditCommentComplete | TBaseDelegate_TwoParams< void, const FReviewComment &, const FString & > | ReviewComments.h | |
| OnGetCommentsComplete | TBaseDelegate_TwoParams< void, const TArray< FReviewComment > &, const FString & > | ReviewComments.h | |
| OnGetReviewTopicForCLComplete | TBaseDelegate_TwoParams< void, const FReviewTopic &, const FString & > | ReviewComments.h | |
| OnPostCommentComplete | TBaseDelegate_TwoParams< void, const FReviewComment &, const FString & > | ReviewComments.h |
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void EditComment
(
const FReviewComment& Comment, |
All unset members will be left unchanged. | ReviewComments.h | |
void GetComments
(
const FReviewTopic& Topic, |
ReviewComments.h | ||
void GetOrCreateReviewTopicForCL
(
const FString& ChangelistNum, |
Retrieves the review associated with a CL. If there is none, it creates a new review and returns that. | ReviewComments.h | |
void GetReviewTopicForCL
(
const FString& ChangelistNum, |
Retrieves the review associated with a CL. | ReviewComments.h | |
FString GetUsername() |
Returns the name of the user logged in | ReviewComments.h | |
void PostComment
(
FReviewComment& Comment, |
Body must be set; username will get set by PostComment. | ReviewComments.h |