00001 #ifndef __DEBUGDUMPBUF_H__ 00002 #define __DEBUGDUMPBUF_H__ 00003 00004 #include <stdlib.h> 00005 00006 namespace oasys { 00007 00008 struct DebugDumpBuf { 00009 static const size_t size_ = 1024 * 8; 00010 static char buf_[size_]; 00011 }; 00012 00013 } // namespace oasys 00014 00015 #endif /* __DEBUGDUMPBUF_H__ */