You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
605 B
36 lines
605 B
#ifndef KBASERULES_H
|
|
#define KBASERULES_H
|
|
|
|
#include "messageReceiver.h"
|
|
|
|
class KSMBaseRules : public KSircMessageReceiver
|
|
{
|
|
public:
|
|
KSMBaseRules(KSircProcess *proc)
|
|
: KSircMessageReceiver(proc)
|
|
{
|
|
broadcast = FALSE;
|
|
}
|
|
virtual ~KSMBaseRules()
|
|
{
|
|
}
|
|
|
|
virtual void sirc_receive(TQCString str, bool broadcast);
|
|
|
|
virtual void control_message(int, TQString);
|
|
|
|
filterRuleList *defaultRules();
|
|
|
|
private:
|
|
bool broadcast;
|
|
char to[101];
|
|
char match_us[101];
|
|
char to_us[101];
|
|
char msg1_match[101];
|
|
char msg1_to[101];
|
|
char msg2_match[101];
|
|
char msg2_to[101];
|
|
};
|
|
|
|
#endif
|