Server 0.0.1
HTTP/REST server implementation

include/interface/observer.h

Go to the documentation of this file.
00001 
00024 #ifndef __OBSERVER_H__
00025 #define __OBSERVER_H__
00026 
00027 typedef void (* fptr_observerNotify)(void *, void*);
00028 
00029 extern const struct interface i_Observer;
00030 
00031 struct i_Observer {
00032         const struct interface * const _;
00033         fptr_observerNotify      notify;
00034 };
00035 
00036 extern void observerNotify(void *, void *);
00037 
00038 #endif // __OBSERVER_H__
00039 
00040 // vim: set ts=4 sw=4:
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines