CoSWoT Servient-C
Loading...
Searching...
No Matches
CoSGC.h
1#ifndef COSGC
2#define COSGC
3
4
5typedef struct MessageCoSGC{
6 char* graphToFree;
9
10
11typedef struct MessageCoSGCList
12{
13 int length;
14 MessageCoSGC *list;
17
18MessageCoSGCList messageCoSGCList;
19
20//Functions :
29void initCOSGC();
30
35void deleteCOSGC();
36
43void addMessage(char * graphToFree, int modulesNombre);
44
50void finishwithgraph(char* graphRDF);
51
57
62void printListCoSGC();
65#endif
void deleteCOSGC()
delete the messages list
Definition: CoSGC.c:16
void removeUselessGraph()
Methode to remove useless graph.
void printListCoSGC()
Use to debug.
Definition: CoSGC.c:62
void initCOSGC()
initialise the messages list for CoSGC
void addMessage(char *graphToFree, int modulesNombre)
Add a message to the list.
Definition: CoSGC.c:22
void finishwithgraph(char *graphRDF)
Methode use by all modules to say: I done with that graph.
Definition: CoSGC.c:32
Definition: CoSGC.h:12
int length
Definition: CoSGC.h:13
Definition: CoSGC.h:5
char * graphToFree
Definition: CoSGC.h:6
int modulesNombre
Definition: CoSGC.h:7