Files
krfb/kinetd/kinetd.h
Tim Jansen 617167cae5 preparation for 0.6.0; knotify commit (not working yet)
svn path=/trunk/kdenetwork/krfb/; revision=136908
2002-02-17 00:33:31 +00:00

45 lines
1.3 KiB
C++

/***************************************************************************
kinetd.h
------------
begin : Mon Feb 11 2002
copyright : (C) 2002 by Tim Jansen
email : tim@tjansen.de
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef _KINETD_H_
#define _KINETD_H_
#include <kdedmodule.h>
#include "portlistener.h"
class KInetD : public KDEDModule {
Q_OBJECT
K_DCOP
private:
QPtrList<PortListener> portListeners;
public:
KInetD(QCString &n);
loadServiceList();
k_dcop:
void reloadPortListenerList();
PortListener *findPortListener(QString name);
}
#endif