~stolowski/unity-scopes-api/fix-1393382-rtm

« back to all changes in this revision

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

  • Committer: Pawel Stolowski
  • Date: 2014-11-04 14:33:07 UTC
  • mfrom: (241.1.20 unity-scopes-api)
  • Revision ID: pawel.stolowski@canonical.com-20141104143307-cs70gjyowjtwpk69
Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
121
121
    //@}
122
122
 
123
123
    /**
124
 
     \brief Get canned query of this search request.
 
124
     \brief Get a canned query for this search request.
125
125
 
126
 
     \return canned query
127
 
     \throws unity::LogicException if canned query was not initialized (the default ctor was used).
 
126
     \return The canned query.
 
127
     \throws unity::LogicException if the canned query was not initialized (was default-constructed).
128
128
     */
129
129
    CannedQuery query() const;
130
130
 
131
131
    /**
132
132
     \brief Get metadata for this search request.
133
 
     \return search metadata
134
 
     \throws unity::LogicException if search metadata was not initialized (the default ctor was used).
 
133
     \return The search metadata.
 
134
     \throws unity::LogicException if search metadata was not initialized (was default-constructed).
135
135
    */
136
136
    SearchMetadata search_metadata() const;
137
137