~knitzsche/savilerow/location_tester

« back to all changes in this revision

Viewing changes to include/preview.h

  • Committer: Kyle Nitzsche
  • Date: 2015-03-30 14:38:31 UTC
  • Revision ID: kyle.nitzsche@canonical.com-20150330143831-jslg4qcv0eu7kezs
holidays scope

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2015 Canonical Ltd
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License version 3 as
 
6
 * published by the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Authored by: Kyle Nitzsche <kyle.nitzsche@canonical.com>
 
17
 *
 
18
 */
 
19
 
 
20
#ifndef PREVIEW_H
 
21
#define PREVIEW_H
 
22
 
 
23
#include "scope.h"
 
24
 
 
25
#include <unity/scopes/ScopeBase.h>
 
26
#include <unity/scopes/PreviewQueryBase.h>
 
27
#include <unity/scopes/Variant.h>
 
28
#include <unity/scopes/Result.h>
 
29
 
 
30
class Preview : public unity::scopes::PreviewQueryBase
 
31
{
 
32
public:
 
33
    Preview(unity::scopes::Result const&, unity::scopes::ActionMetadata const&);
 
34
    ~Preview();
 
35
    virtual void cancelled() override;
 
36
    virtual void run(unity::scopes::PreviewReplyProxy const& reply) override;
 
37
private:
 
38
    const unity::scopes::Result result_;
 
39
};
 
40
 
 
41
#endif