00001 #ifndef _CTBosFill_HXX
00002 #define _CTBosFill_HXX 1
00003
00008
00009
00010
00011
00012
00013
00014
00015
00016 class CTBosFill {
00017
00018 public:
00019 CTBosFill(CTBint i_count = 0, char c_fill = ' ');
00020
00021 CTBint Count() const;
00022 char Fill() const;
00023
00024 private:
00025
00026 CTBint mi_count;
00027 char mc_fill;
00028
00029 };
00030
00031 ostream& operator<<(
00032 ostream& os,
00033 const CTBosFill& osf);
00034
00035 #if !(defined(CTB__OutLine) || defined(CTBosFill__OutLine))
00036 #include "CTBosFill.icc"
00037 #endif
00038
00039 #endif