#ifndef _EXCEPT_H #define _EXCEPT_H enum ExceptType_t { NONE, STREAM_ERROR, END_OF_PKT, READ_EXPT, WRITE_EXPT }; class PicException_t { public: ExceptType_t type; int gbnum; int mbnum; PicException_t(); PicException_t(ExceptType_t e, int gnum = 0, int mnum = 0); }; #endif