All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
numBitmapEffect.cc
Go to the documentation of this file.
1 #include <iostream>
2 #include <iomanip>
4 namespace osl{
5 #if 0
6  std::ostream& operator<<(std::ostream& os,const NumBitmapEffect& effectMask){
7  return os << '(' << std::setbase(16) << std::setfill('0')
8  << std::setw(4) << effectMask.getMask(1)
9  << std::setw(8) << effectMask.getMask(0) << std::setbase(10) << ')';
10  }
11 #endif
12 }