~mardy/unity-scopes-api/clientid-1554040

« back to all changes in this revision

Viewing changes to include/unity/scopes/Category.h

  • Committer: Michi Henning
  • Date: 2015-02-25 05:20:57 UTC
  • mfrom: (163.386.1 devel)
  • mto: (163.386.2 devel)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: michi.henning@canonical.com-20150225052057-9p21sge1myzaowcb
Merged devel and resolved conflicts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
{
37
37
    class CategoryImpl;
38
38
    class CategoryRegistry;
 
39
    class SearchReplyImpl;
39
40
}
40
41
 
41
42
/**
42
43
   \brief A set of related results returned by a scope
43
44
   and displayed within a single pane in the Unity dash.
44
45
 
45
 
   To create a Category, use ReplyProxy::register_category.
 
46
   To create a Category, use SearchReplyProxy::register_category.
46
47
   \see ResultItem
47
48
*/
48
49
class Category
100
101
    /// @endcond
101
102
 
102
103
    friend class internal::CategoryRegistry;
 
104
    friend class internal::SearchReplyImpl;
103
105
 
104
106
private:
105
107
    std::unique_ptr<internal::CategoryImpl> p;