~ubuntu-branches/ubuntu/raring/kdepim/raring-proposed

« back to all changes in this revision

Viewing changes to kaddressbook/grantlee/thememanager.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2012-06-07 07:56:38 UTC
  • mfrom: (0.2.27)
  • Revision ID: package-import@ubuntu.com-20120607075638-0luhdq11z7sgvs4m
Tags: 4:4.8.80-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
  This file is part of the Grantlee template system.
 
2
  This file is part of KAddressBook.
3
3
 
4
4
  Copyright (c) 2010 Tobias Koenig <tokoe@kde.org>
5
5
 
6
6
  This library is free software; you can redistribute it and/or
7
7
  modify it under the terms of the GNU Lesser General Public
8
8
  License as published by the Free Software Foundation; either version
9
 
  2 of the Licence, or (at your option) any later version.
 
9
  2 of the License, or (at your option) any later version.
10
10
 
11
11
  This library is distributed in the hope that it will be useful,
12
12
  but WITHOUT ANY WARRANTY; without even the implied warranty of
20
20
#ifndef GRANTLEE_THEMEMANAGER_H
21
21
#define GRANTLEE_THEMEMANAGER_H
22
22
 
 
23
#include "theme.h"
 
24
 
23
25
#include <QtCore/QObject>
24
26
 
25
 
#include "theme.h"
26
 
 
27
 
namespace Grantlee
28
 
{
 
27
namespace Grantlee {
29
28
 
30
29
/**
31
30
 *
41
40
     * @param themesPath The path to the top-level directory of the theme directories.
42
41
     * @param parent The parent object.
43
42
     */
44
 
    ThemeManager( const QString &themesPath = QString(), QObject *parent = 0 );
 
43
    explicit ThemeManager( const QString &themesPath = QString(), QObject *parent = 0 );
45
44
 
46
45
    /**
47
46
     * Destroys the theme manager.
83
82
  private:
84
83
    //@cond PRIVATE
85
84
    class Private;
86
 
    Private* const d;
 
85
    Private *const d;
87
86
 
88
87
    Q_PRIVATE_SLOT( d, void directoryChanged() )
89
88
    //@endcond