// -*- c++ -*- #pragma once #ifndef __RAYS_DEFS_H__ #define __RAYS_DEFS_H__ #include namespace Rays { typedef unsigned char uchar; typedef unsigned short ushort; typedef unsigned int uint; typedef unsigned long ulong; typedef float coord; typedef std::string String; enum {UNKNOWN = 0}; }// Rays #endif//EOH