#include "builtin.h"
#include "int.defs.h"
Include dependency graph for int.Vec.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Data Structures | |
| class | intVec |
Defines | |
| #define | _int_typedefs 1 |
| #define | _intVec_h 1 |
Typedefs | |
| typedef int(* | intCombiner )(int, int) |
| typedef int(* | intComparator )(int, int) |
| typedef int(* | intMapper )(int) |
| typedef int(* | intPredicate )(int) |
| typedef void(* | intProcedure )(int) |
Functions | |
| void | default_intVec_error_handler (const char *) |
| int | operator!= (intVec &a, intVec &b) |
| one_arg_error_handler_t | set_intVec_error_handler (one_arg_error_handler_t f) |
Variables | |
| one_arg_error_handler_t | intVec_error_handler |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Definition at line 52 of file int.Vec.cc. 00053 { 00054 #if 0 00055 cerr << "Fatal intVec error. " << msg << "\n"; 00056 #else 00057 // ns doesn't use streams 00058 fprintf(stderr, "Fatal intVec error. %s\n", msg); 00059 #endif 00060 exit(1); 00061 }
|
|
||||||||||||
|
Definition at line 152 of file int.Vec.h.
|
|
|
Definition at line 65 of file int.Vec.cc. References intVec_error_handler. 00066 { 00067 one_arg_error_handler_t old = intVec_error_handler; 00068 intVec_error_handler = f; 00069 return old; 00070 }
|
|
|
Definition at line 63 of file int.Vec.cc. Referenced by set_intVec_error_handler(). |
1.4.6