// file: $ECE_8993/class/signal/v1.0/signal_constants.h // // this file defines global paths, filenames and constants of the signal class // // make sure definitions are made only once // #ifndef __ISIP_SIGNAL_CONSTANTS #define __ISIP_SIGNAL_CONSTANTS // isip include files // #ifndef __ISIP_INTEGRAL_CONSTANTS #include #endif // define the class name // #define SIGNAL_CLASS_NAME (unichar*)"Signal" // define the default values for signal parameters // #define SIGNAL_DEFAULT_NUM_CHANS (long)1 #define SIGNAL_DEFAULT_NUM_BYTES (long)2 #define SIGNAL_DEFAULT_SF (double)8000.0 #define SIGNAL_DEFAULT_SWAP_BYTES ISIP_FALSE // define the characters used to trigger filename expansion // via a system call - since this is expensive, we only want to do // it when it is absolutely necessary // #define SIGNAL_ENV_DELIMITERS "$~(){}[]?" // end of file // #endif