blob: 9d79b2b39f3d3aeea7009cb1d2e2ef221dcaa042 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef MINIKDE_KIDMANAGER_H
#define MINIKDE_KIDMANAGER_H
#include <qstring.h>
#include <qobject.h>
class KIdManager : public QObject
{
Q_OBJECT
public:
KIdManager( );
static QString addId (const QString& idString,const QString& id,const QString& idvalue ) ;
private:
private slots:
};
#endif
|