// Represent // // Douglas Thrift // // $Id$ #include "Binary.hpp" #include int Main(const app::Options& options) { Represent represent; return 0; } Represent::Represent() { ext::String string("1001"); Binary sign(string, true), unsign(string, false); api::Cerr << string << ios::NewLine << ext::String(sign) << ios::NewLine << ext::String(unsign) << ios::NewLine; }