#ifndef BB_TYPES_H #define BB_TYPES_H #include "bbstd.h" typedef bool bbBool; typedef signed char bbByte; typedef unsigned char bbUByte; typedef signed short bbShort; typedef unsigned short bbUShort; typedef signed int bbInt; typedef unsigned int bbUInt; typedef signed long long bbLong; typedef unsigned long long bbULong; typedef float bbFloat; typedef double bbDouble; typedef unsigned short bbChar; class bbString; template class bbFunction; template class bbArray; template struct bbGCVar; bbString bbTypeName( const char *type ); #endif