mirror of
https://github.com/KDE/krfb
synced 2026-07-01 07:31:16 -07:00
45 lines
1.3 KiB
C++
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
|