~ubuntu-branches/ubuntu/edgy/digikam/edgy-updates

« back to all changes in this revision

Viewing changes to interfaces/plugin.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Achim Bohnet
  • Date: 2005-03-10 02:39:02 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 hoary)
  • Revision ID: james.westby@ubuntu.com-20050310023902-023nymfst5mg696c
Tags: 0.7.2-2
* debian/TODO: clean
* digikam manpage: better --detect-camera description

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* ============================================================
2
 
 * File  : plugin.cpp
3
 
 * Author: Renchi Raju <renchi@pooh.tam.uiuc.edu>
4
 
 * Date  : 2003-01-30
5
 
 * Description : 
6
 
 * 
7
 
 * Copyright 2003 by Renchi Raju
8
 
 
9
 
 * This program is free software; you can redistribute it
10
 
 * and/or modify it under the terms of the GNU General
11
 
 * Public License as published bythe Free Software Foundation;
12
 
 * either version 2, or (at your option)
13
 
 * any later version.
14
 
 * 
15
 
 * This program is distributed in the hope that it will be useful,
16
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 
 * GNU General Public License for more details.
19
 
 * 
20
 
 * ============================================================ */
21
 
 
22
 
#include <kparts/componentfactory.h>
23
 
 
24
 
#include "plugin.h"
25
 
 
26
 
namespace Digikam
27
 
{
28
 
 
29
 
Plugin::Plugin(QObject *parent, const char* name)
30
 
    : QObject(parent, name), KXMLGUIClient()
31
 
{
32
 
}
33
 
 
34
 
 
35
 
Plugin::~Plugin()
36
 
{
37
 
 
38
 
}
39
 
 
40
 
void Plugin::enableView()
41
 
{
42
 
    
43
 
}
44
 
void Plugin::disableView()
45
 
{
46
 
    
47
 
}
48
 
 
49
 
};
50