~unity-2d-team/unity-2d/unity-2d-formfactor-fixes

« back to all changes in this revision

Viewing changes to libunity-2d-private/src/testabilityinterface.h

Remove code to load testability since Qt does that for us. Fixes: . Appoved by Gerry Boland.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*************************************************************************** 
2
 
** 
3
 
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 
4
 
** All rights reserved. 
5
 
** Contact: Nokia Corporation (testabilitydriver@nokia.com) 
6
 
** 
7
 
** This file is part of TDriver. 
8
 
** 
9
 
** If you have questions regarding the use of this file, please contact 
10
 
** Nokia at testabilitydriver@nokia.com . 
11
 
** 
12
 
** This library is free software; you can redistribute it and/or 
13
 
** modify it under the terms of the GNU Lesser General Public 
14
 
** License version 2.1 as published by the Free Software Foundation 
15
 
** and appearing in the file LICENSE.LGPL included in the packaging 
16
 
** of this file.
17
 
**
18
 
****************************************************************************/
19
 
 
20
 
#include <QObject>
21
 
#include <QString>
22
 
 
23
 
class TestabilityInterface
24
 
{
25
 
public:
26
 
     virtual ~TestabilityInterface() {}
27
 
 
28
 
     /*!
29
 
       Initializes the plugin once loaded.
30
 
     */
31
 
     virtual void Initialize() = 0;
32
 
 
33
 
};
34
 
 
35
 
 Q_DECLARE_INTERFACE(TestabilityInterface,
36
 
                     "com.nokia.testability.TestabilityInterface/1.0")
37