[GME-commit] GMESRC/SDK/BON BONImpl.cpp,1.28,1.29 BONImpl.h,1.16,1.17

gme-commit at list.isis.vanderbilt.edu gme-commit at list.isis.vanderbilt.edu
Thu Sep 15 20:11:52 CDT 2005


Update of /project/gme-repository/GMESRC/SDK/BON
In directory escher:/tmp/cvs-serv8656

Modified Files:
	BONImpl.cpp BONImpl.h 
Log Message:
ConsoleContents put/get added.


CVS User: Zoltan Molnar, ISIS (zolmol)

Index: BONImpl.h
===================================================================
RCS file: /project/gme-repository/GMESRC/SDK/BON/BONImpl.h,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** BONImpl.h	8 Sep 2005 19:09:47 -0000	1.16
--- BONImpl.h	15 Sep 2005 19:11:49 -0000	1.17
***************
*** 168,171 ****
--- 168,173 ----
  
  			void					consoleMsg(const std::string& msg, msgtype_enum type);
+ 			std::string 				getConsoleContents();
+ 			void 					putConsoleContents(const std::string& htmlMsg);
  
  			std::string				getGMEVersion();

Index: BONImpl.cpp
===================================================================
RCS file: /project/gme-repository/GMESRC/SDK/BON/BONImpl.cpp,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -d -r1.28 -r1.29
*** BONImpl.cpp	8 Sep 2005 19:09:47 -0000	1.28
--- BONImpl.cpp	15 Sep 2005 19:11:49 -0000	1.29
***************
*** 607,611 ****
  		COMTHROW(pGME->ConsoleMessage(Util::Copy( msg ), type));
  	}
! 	
  	std::string	ProjectImpl::getGMEVersion()
  	{
--- 607,626 ----
  		COMTHROW(pGME->ConsoleMessage(Util::Copy( msg ), type));
  	}
! 
! 	std::string ProjectImpl::getConsoleContents()
! 	{
! 		GMEAppPtr pGME = getGME();
! 		CComBSTR ccBstr;
! 		COMTHROW(pGME->get_ConsoleContents( &ccBstr));
! 		return Util::Copy( ccBstr );
! 	}
! 
! 	void ProjectImpl::putConsoleContents(const std::string& htmlMsg )
! 	{
! 		GMEAppPtr pGME = getGME();
! 		CComBSTR ccBstr(htmlMsg.c_str());
! 		COMTHROW(pGME->put_ConsoleContents( ccBstr));
! 	}
! 
  	std::string	ProjectImpl::getGMEVersion()
  	{



More information about the GME-commit mailing list