~ubuntu-branches/ubuntu/utopic/kde-workspace/utopic-proposed

« back to all changes in this revision

Viewing changes to kcontrol/kfontinst/kcmfontinst/FontInstInterface.h

  • Committer: Bazaar Package Importer
  • Author(s): Michał Zając
  • Date: 2011-07-09 08:31:15 UTC
  • Revision ID: james.westby@ubuntu.com-20110709083115-ohyxn6z93mily9fc
Tags: upstream-4.6.90
Import upstream version 4.6.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __FONTINST_INTERFACE_H__
 
2
#define __FONTINST_INTERFACE_H__
 
3
 
 
4
#include "FontinstIface.h"
 
5
#include "FontInst.h"
 
6
 
 
7
namespace KFI
 
8
{
 
9
 
 
10
class FontInstInterface : public OrgKdeFontinstInterface
 
11
{
 
12
    public:
 
13
 
 
14
    FontInstInterface()
 
15
        : OrgKdeFontinstInterface(OrgKdeFontinstInterface::staticInterfaceName(),
 
16
                                  FONTINST_PATH, QDBusConnection::sessionBus(), 0L)
 
17
    {
 
18
    }
 
19
};
 
20
 
 
21
}
 
22
 
 
23
#endif