Typedefs | |
typedef void (* | CoroutineFnp )(void *) |
typedef void (* | PostTDFunc )(cTransientDetection *, void *) |
typedef void (* | PostADFunc )(cAccuracyDetection *, void *) |
typedef int (* | CritFunc )(const cKSplit &, cKSplit::Grid &, int, double *) |
typedef double (* | DivFunc )(const cKSplit &, cKSplit::Grid &, double, double *) |
typedef void (* | DisplayStringNotifyFunc )(cModule *,bool, void *) |
typedef int (* | CompareFunc )(cObject *a, cObject *b) |
typedef bool (* | ForeachFunc )(cObject *,bool) |
typedef void (* | RecordFunc )(void *, double, double) |
typedef cModule* (* | ModuleCreateFunc )(const char *, cModule *) |
typedef cPar* (* | ParCreateFunc )() |
typedef void (* | VoidDelFunc )(void *) |
typedef void* (* | VoidDupFunc )(void *) |
typedef double (* | MathFunc )(...) |
typedef double (* | MathFuncNoArg )() |
typedef double (* | MathFunc1Arg )(double) |
typedef double (* | MathFunc2Args )(double, double) |
typedef double (* | MathFunc3Args )(double, double, double) |
typedef double (* | MathFunc4Args )(double, double, double, double) |
|
Prototype for functions that can be used by cQueue objects configured as priority queues to compare two objects. Return values of CompareFunc should be
|
|
Prototype for functions that can be used with cCoroutine objects as coroutine bodies. |
|
Prototype for cell split criterion functions used by cKSplit objects. |
|
Prototype for callback functions that are used to notify graphical user interfaces about display string changes. Args: (sub)module which changed; immediate refresh wanted or not; inspector's data |
|
Prototype for cell division criterion functions used by cKSplit objects. |
|
Prototype for functions that can be used with the foreach() mechanism defined in cObject. |
|
Prototype for mathematical functions that can be used in reverse Polish expressions (see ExprElem). |
|
Prototype for mathematical functions taking one argument that can be used in reverse Polish expressions (see ExprElem). |
|
Prototype for mathematical functions taking two arguments that can be used in reverse Polish expressions (see ExprElem). |
|
Prototype for mathematical functions taking three arguments that can be used in reverse Polish expressions (see ExprElem). |
|
Prototype for mathematical functions taking four arguments that can be used in reverse Polish expressions (see ExprElem). |
|
Prototype for mathematical functions taking no arguments that can be used in reverse Polish expressions (see ExprElem). |
|
Prototype for functions that are called by cModuleType objects to create modules of a specific type. |
|
Prototype for functions that are called by cLinkType objects to create parameter objects for a link of a specific type. |
|
Prototype for callback functions used by a cAccuracyDetection object. |
|
Prototype for callback functions used by a cTransientDetection object. |
|
Prototype for callback functions that are used to notify graphical user interfaces when values are recorded to an output vector (see cOutVector). |
|
Prototype for functions that are called by some objects (cPar, cLinkedList) to free up user-defined data structures. |
|
Prototype for functions that are called by some objects (cPar, cLinkedList) to duplicate user-defined data structures. |