ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libgender/event.h
Revision: 1.1
Committed: Sat Oct 9 16:36:31 2004 UTC (19 years, 8 months ago) by root
Content type: text/plain
Branch: MAIN
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 #ifndef EVENT_H
2     #define EVENT_H
3    
4     template<typename result, class event_data>
5     struct event_receiver {
6     virtual result event (event_data &) = 0;
7     };
8    
9     #endif
10