GME  13
MsgConsole.h
Go to the documentation of this file.
00001 #pragma once
00002 
00003 #include "Gme.h"
00004 
00005 class MsgConsole
00006 {
00007         CComPtr<IGMEOLEApp>   m_gme;
00008 public:
00009         MsgConsole(bool gme);
00010         void sendMsg(const std::string&, int mtype);
00011         void sendMsg(const char* p_msg, int p_mtype);
00012 
00013 };
00014