~kalikiana/unity-action-api/cutedocs

« back to all changes in this revision

Viewing changes to src/unity-preview-parameter.cpp

  • Committer: Tarmac
  • Author(s): Antti Kaijanmäki
  • Date: 2013-06-11 14:23:39 UTC
  • mfrom: (4.1.21 unity-action-api)
  • Revision ID: tarmac-20130611142339-5sdiuvqszrdpj2ae
PreviewParameter and PreviewRangeParameter.

Approved by PS Jenkins bot, Ted Gould.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* This file is part of unity-action-api
 
2
 * Copyright 2013 Canonical Ltd.
 
3
 *
 
4
 * unity-action-api is free software: you can redistribute it and/or modify it
 
5
 * under the terms of the GNU Lesser General Public License version 3,
 
6
 * as published by the Free Software Foundation.
 
7
 *
 
8
 * unity-action-api is distributed in the hope that it will be useful, but
 
9
 * WITHOUT ANY WARRANTY; without even the implied warranties of
 
10
 * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
 
11
 * PURPOSE.  See the GNU Lesser General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 */
 
16
 
 
17
#include <unity/action/PreviewParameter>
 
18
using namespace unity::action;
 
19
 
 
20
//! \private
 
21
class Q_DECL_HIDDEN unity::action::PreviewParameter::Private {
 
22
public:
 
23
    void *placeholder;
 
24
};
 
25
 
 
26
PreviewParameter::PreviewParameter(QObject *parent)
 
27
    : QObject(parent),
 
28
      d(new Private())
 
29
{
 
30
}
 
31
 
 
32
PreviewParameter::~PreviewParameter()
 
33
{
 
34
}