taskrambler  0.1.9
Web server and task management solution.
subject.c File Reference
#include "class.h"
#include "interface/subject.h"
+ Include dependency graph for subject.c:

Go to the source code of this file.

Functions

void subjectAttach (void *subject, void *observer)
 
void subjectDetach (void *subject, void *observer)
 
void subjectNotify (void *subject)
 

Variables

const struct interface i_Subject
 

Detailed Description

Author
Georg Hopp

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

Definition in file subject.c.

Function Documentation

void subjectAttach ( void *  subject,
void *  observer 
)

Definition at line 32 of file subject.c.

References CALL.

Referenced by main().

33 {
34  CALL(subject, Subject, attach, observer);
35 }
#define CALL(object, _iface, method,...)
Definition: class/class.h:106

+ Here is the caller graph for this function:

void subjectDetach ( void *  subject,
void *  observer 
)

Definition at line 38 of file subject.c.

References CALL.

39 {
40  CALL(subject, Subject, detach, observer);
41 }
#define CALL(object, _iface, method,...)
Definition: class/class.h:106
void subjectNotify ( void *  subject)

Definition at line 44 of file subject.c.

References CALL.

Referenced by httpWorkerProcess().

45 {
46  CALL(subject, Subject, notify);
47 }
#define CALL(object, _iface, method,...)
Definition: class/class.h:106

+ Here is the caller graph for this function:

Variable Documentation

const struct interface i_Subject
Initial value:
= {
"subject",
3
}

Definition at line 26 of file subject.c.