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.
18 lines
334 B
18 lines
334 B
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <inttypes.h>
|
|
|
|
#include "trbase.h"
|
|
#include "trcomm.h"
|
|
#include "trevent.h"
|
|
|
|
TR_CLASS(TestHandler) {
|
|
TR_EXTENDS(TR_EventHandler);
|
|
unsigned long long handled;
|
|
};
|
|
TR_INSTANCE_INIT(TestHandler);
|
|
TR_CLASSVARS_DECL(TestHandler) {
|
|
TR_CV_EXTENDS(TR_EventHandler);
|
|
};
|
|
|
|
// vim: set ts=4 sw=4:
|