Home | History | Annotate | Download | only in Common

Lines Matching refs:CMyComBSTR

87 class CMyComBSTR

91 CMyComBSTR(): m_str(NULL) {}
92 CMyComBSTR(LPCOLESTR src) { m_str = ::SysAllocString(src); }
93 // CMyComBSTR(int nSize) { m_str = ::SysAllocStringLen(NULL, nSize); }
94 // CMyComBSTR(int nSize, LPCOLESTR sz) { m_str = ::SysAllocStringLen(sz, nSize); }
95 CMyComBSTR(const CMyComBSTR& src) { m_str = src.MyCopy(); }
97 CMyComBSTR(REFGUID src)
105 ~CMyComBSTR() { ::SysFreeString(m_str); }
106 CMyComBSTR& operator=(const CMyComBSTR& src)
116 CMyComBSTR& operator=(LPCOLESTR src)