Server 0.0.1
HTTP/REST server implementation

src/interface/observer.c

Go to the documentation of this file.
00001 
00023 #include "class.h"
00024 #include "interface/observer.h"
00025 
00026 const struct interface i_Observer = {
00027         "observer",
00028         1
00029 };
00030 
00031 void
00032 observerNotify(void * observer, void * subject)
00033 {
00034         CALL(observer, Observer, notify, subject);
00035 }
00036 
00037 // vim: set ts=4 sw=4:
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines