Go to the documentation of this file.00001
00002 #ifndef vil_stream_write_h_
00003 #define vil_stream_write_h_
00004 #ifdef VCL_NEEDS_PRAGMA_INTERFACE
00005 #pragma interface
00006 #endif
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #include <vxl_config.h>
00023 class vil_stream;
00024
00025
00026
00027 void vil_stream_write_big_endian_uint_16(vil_stream *, vxl_uint_16);
00028
00029
00030 void vil_stream_write_little_endian_uint_16(vil_stream *, vxl_uint_16);
00031
00032
00033
00034 void vil_stream_write_big_endian_uint_32(vil_stream *, vxl_uint_32);
00035
00036
00037 void vil_stream_write_little_endian_uint_32(vil_stream *, vxl_uint_32);
00038
00039 #if VXL_HAS_INT_64
00040
00041
00042 void vil_stream_write_big_endian_uint_64(vil_stream *, vxl_uint_64);
00043
00044
00045 void vil_stream_write_little_endian_uint_64(vil_stream *, vxl_uint_64);
00046 #endif
00047
00048 #endif // vil_stream_write_h_