blob: 463eca055d10dfa1042da91f8040693a9285c3d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
/***************************************************************************
stationselection_interfaces.h - description
-------------------
begin : Son Aug 3 2003
copyright : (C) 2003 by Martin Witte
email : witte@kawo1.rwth-aachen.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 KRADIO_STATIONSELECTION_INTERFACES_H
#define KRADIO_STATIONSELECTION_INTERFACES_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "interfaces.h"
class TQStringList;
INTERFACE(IStationSelection, IStationSelectionClient)
{
public :
IF_CON_DESTRUCTOR(IStationSelection, -1)
RECEIVERS:
IF_RECEIVER( setStationSelection(const TQStringList &sl) )
SENDERS:
IF_SENDER ( notifyStationSelectionChanged(const TQStringList &sl) )
ANSWERS:
IF_ANSWER ( const TQStringList & getStationSelection () const )
};
INTERFACE(IStationSelectionClient, IStationSelection)
{
public :
IF_CON_DESTRUCTOR(IStationSelectionClient, 1)
SENDERS:
IF_SENDER ( sendStationSelection(const TQStringList &sl) )
RECEIVERS:
IF_RECEIVER( noticeStationSelectionChanged(const TQStringList &sl) )
QUERIES:
IF_QUERY ( const TQStringList & queryStationSelection () )
RECEIVERS:
virtual void noticeConnectedI (cmplInterface *, bool /*pointer_valid*/);
virtual void noticeDisconnectedI (cmplInterface *, bool /*pointer_valid*/);
};
#endif
|