19 #ifndef UNITY_SCOPES_CATEGORISEDRESULT_H
20 #define UNITY_SCOPES_CATEGORISEDRESULT_H
22 #include <unity/scopes/Result.h>
23 #include <unity/scopes/Category.h>
33 class CategorisedResultImpl;
34 class ResultReplyObject;
80 internal::CategorisedResultImpl* fwd()
const;
82 friend class internal::CategorisedResultImpl;
83 friend class internal::ResultReplyObject;
CategorisedResult(Category::SCPtr category)
Creates a CategorisedResult with given category, with all base attributes initially empty...
void set_category(Category::SCPtr category)
Updates the category of this result.
Definition: CategorisedResult.cpp:60
The attributes of a result returned by a Scope.
Definition: Result.h:51
Category::SCPtr category() const
Return category of this result. Get the category instance this result belongs to. ...
Definition: CategorisedResult.cpp:65
A result, including the category it belongs to.
Definition: CategorisedResult.h:41