NEURON
ocnotify.h
Go to the documentation of this file.
1 #ifndef ocnotify_h
2 #define ocnotify_h
3 
4 #include <InterViews/observe.h>
5 
6 #if defined(__cplusplus)
7 extern "C" {
8 #endif
9 
10 void nrn_notify_freed(void (*pf)(void*, int));
11 void nrn_notify_when_void_freed(void* p, Observer* ob);
12 void nrn_notify_when_double_freed(double* p, Observer* ob);
14 void notify_pointer_freed(void* pt);
15 void notify_freed(void* p);
16 void notify_freed_val_array(double* p, size_t);
17 
18 #if defined(__cplusplus)
19 }
20 #endif
21 
22 #endif
void nrn_notify_when_double_freed(double *p, Observer *ob)
Definition: ivoc.cpp:63
void notify_pointer_freed(void *pt)
Definition: ivoc.cpp:83
void nrn_notify_when_void_freed(void *p, Observer *ob)
Definition: ivoc.cpp:54
size_t p
void nrn_notify_freed(void(*pf)(void *, int))
Definition: ivoc.cpp:46
void notify_freed(void *p)
Definition: ivoc.cpp:95
void nrn_notify_pointer_disconnect(Observer *ob)
Definition: ivoc.cpp:72
void notify_freed_val_array(double *p, size_t)
Definition: ivoc.cpp:104