bitXmask.cc
Go to the documentation of this file.
00001 /* bitXmask.cc
00002  */
00003 #include "osl/container/bitXmask.h"
00004 #include <iostream>
00005 
00006 std::ostream& osl::container::operator<<(std::ostream& os,const BitXmask mask){
00007   for(int i=1;i<=9;i++)
00008     os << ((mask.intValue()>>i)&1);
00009   return os;
00010 }
00011 
00012 /* ------------------------------------------------------------------------- */
00013 // ;;; Local Variables:
00014 // ;;; mode:c++
00015 // ;;; c-basic-offset:2
00016 // ;;; End:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines