Click here to Skip to main content
15,885,366 members
Articles / Desktop Programming / MFC

Be Sweet - a set of visual source code browsers

Rate me:
Please Sign up or sign in to vote.
4.85/5 (35 votes)
1 Jul 20038 min read 183.7K   4.9K   122  
A set of source code and project browsers to compliment Visual Studio.
#ifndef ComHelper_H
#define ComHelper_H

#include <string>
#include <sstream>

#include <comdef.h>

class COMExceptionThrower
{
public:
	COMExceptionThrower( void){}
	~COMExceptionThrower( void){}

	COMExceptionThrower( const HRESULT errCode)
	{
		this->operator=( errCode);
	}
		
protected:
	// don't allow regular copy constructor call
	COMExceptionThrower( const COMExceptionThrower&);

public:
	inline const COMExceptionThrower& operator=( const HRESULT errCode) const throw( _com_error)
	{
		if ( FAILED( errCode))
			_com_raise_error( errCode);
			
		return *this;
	}
};

inline void DebugBox(const std::string &message)
{
  #ifdef DEBUG
    ::MessageBox(NULL, message.c_str(), "BeSweet AddIn", MB_OK | MB_ICONERROR);
  #endif
}

inline std::string asString(const _com_error &e)
{
  std::stringstream ss;
	ss << "Com-Exception \"" << e.ErrorMessage() << "\"" << std::hex << _com_error::WCodeToHRESULT(e.WCode());
  return ss.str();
}

#define HResult HRESULT STDMETHODCALLTYPE

template<class T>
CComPtr<T> new_instance()
{
  typedef CComObject<T> ComObject;
  ComObject *object;
	ComObject::CreateInstance(&object);

  return CComPtr<T>(object);
}

extern COMExceptionThrower cex_;

#endif

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Switzerland Switzerland
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions