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
size_t p
void notify_freed(void *p)
Definition: ivoc.cpp:93
void nrn_notify_when_void_freed(void *p, Observer *ob)
Definition: ivoc.cpp:52
void nrn_notify_when_double_freed(double *p, Observer *ob)
Definition: ivoc.cpp:61
void notify_pointer_freed(void *pt)
Definition: ivoc.cpp:81
void nrn_notify_freed(void(*pf)(void *, int))
Definition: ivoc.cpp:45
void nrn_notify_pointer_disconnect(Observer *ob)
Definition: ivoc.cpp:70
void notify_freed_val_array(double *p, size_t)
Definition: ivoc.cpp:101