00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef FLTERROR_H
00016 #define FLTERROR_H
00017
00018 #include "pandatoolbase.h"
00019
00020
00021 enum FltError {
00022 FE_ok = 0,
00023 FE_could_not_open,
00024 FE_empty_file,
00025 FE_end_of_file,
00026 FE_read_error,
00027 FE_invalid_record,
00028 FE_extra_data,
00029 FE_write_error,
00030 FE_bad_data,
00031 FE_not_implemented,
00032 FE_undefined_instance,
00033 FE_internal
00034 };
00035
00036 ostream &operator << (ostream &out, FltError error);
00037
00038 #endif
00039
00040
00041