00001
00006
00007
00008
00009
00010
00011
00012
00013
00014
00016
00017 inline CTBexceptionIndexRange::CTBexceptionIndexRange()
00018 : CTBexception("CTBexceptionIndexRange"),
00019 mi_index(0),
00020 mi_limit(0)
00021 {}
00022
00023
00025
00026 inline CTBexceptionIndexRange::CTBexceptionIndexRange(CTBint i_index)
00027 : CTBexception("CTBexceptionIndexRange"),
00028 mi_index(i_index),
00029 mi_limit(0)
00030 {}
00031
00032
00034
00035 inline CTBexceptionIndexRange::CTBexceptionIndexRange(CTBint i_index,
00036 CTBint i_limit)
00037 : CTBexception("CTBexceptionIndexRange"),
00038 mi_index(i_index),
00039 mi_limit(i_limit)
00040 {}
00041
00042
00044
00045 inline CTBexceptionIndexRange::CTBexceptionIndexRange(CTBint i_index,
00046 CTBint i_limit,
00047 const char* c_module)
00048 : CTBexception("CTBexceptionIndexRange", 0, c_module),
00049 mi_index(i_index),
00050 mi_limit(i_limit)
00051 {}
00052
00053
00055
00056 inline CTBint CTBexceptionIndexRange::Index() const
00057 {
00058 return mi_index;
00059 }
00060
00061
00063
00064 inline CTBint CTBexceptionIndexRange::Limit() const
00065 {
00066 return mi_limit;
00067 }
00068