#ifndef _UTILS_H #define _UTILS_H #include "apstring.h" #include "apvector.h" // Collection of useful utility functions apstring IntToString(int n); // postcondition: returns stringized form of n void DebugPrint(int level, const apstring & msg); // print the given debugging error message if level is low enough // (which levels are actually printed is tunable in utils.cpp) #endif