~timo-jyrinki/ubuntu/trusty/maliit-framework/fix_qt52

« back to all changes in this revision

Viewing changes to src/maliit/plugins/attributeextension_p.h

  • Committer: Package Import Robot
  • Author(s): Iain Lane
  • Date: 2013-01-31 13:26:48 UTC
  • Revision ID: package-import@ubuntu.com-20130131132648-w1u9d2279tppxcft
Tags: upstream-0.94.1
ImportĀ upstreamĀ versionĀ 0.94.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* * This file is part of Maliit framework *
 
2
 *
 
3
 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
 
4
 * All rights reserved.
 
5
 *
 
6
 * Contact: maliit-discuss@lists.maliit.org
 
7
 *
 
8
 * This library is free software; you can redistribute it and/or
 
9
 * modify it under the terms of the GNU Lesser General Public
 
10
 * License version 2.1 as published by the Free Software Foundation
 
11
 * and appearing in the file LICENSE.LGPL included in the packaging
 
12
 * of this file.
 
13
 */
 
14
 
 
15
 
 
16
#ifndef MATTRIBUTEEXTENSION_P_H
 
17
#define MATTRIBUTEEXTENSION_P_H
 
18
 
 
19
#include <QSharedPointer>
 
20
#include "mattributeextensionid.h"
 
21
class MKeyOverrideData;
 
22
 
 
23
class MAttributeExtensionPrivate
 
24
{
 
25
public:
 
26
    Q_DECLARE_PUBLIC(MAttributeExtension)
 
27
    MAttributeExtensionPrivate();
 
28
 
 
29
private:
 
30
    MAttributeExtensionId id;
 
31
    QSharedPointer<MKeyOverrideData> keyOverrideData;
 
32
 
 
33
    MAttributeExtension *q_ptr;
 
34
};
 
35
 
 
36
#endif
 
37