console.h

00001 #ifndef __SERVICES__CONSOLE_H__
00002 #define __SERVICES__CONSOLE_H__
00003 
00011 class OE_CONSOLE {
00012 public:
00013     OE_CONSOLE();
00014     ~OE_CONSOLE();
00015     void print(char *str);
00016     void empty(void);
00017     char *get_buf();
00018     uint32 get_len(void);
00019 private:
00020     uint32 buflen;
00021     uint32 curlen;
00022     char *buf;
00023 };
00024 
00025 #endif

Generated on Sat Sep 9 03:50:42 2006 for Openem APIs by  doxygen 1.4.7