indexs.cpp
来自「在vc环境下」· C++ 代码 · 共 26 行
CPP
26 行
// Indexs.cpp : Implementation of CIndexss
#include "stdafx.h"
#include "Indexs.h"
// CIndexss
STDMETHODIMP CGHIndexs::get_FilePath(BSTR* pVal)
{
// TODO: Add your implementation code here
return m_FilePath.CopyTo(pVal);
}
STDMETHODIMP CGHIndexs::put_FilePath(BSTR newVal)
{
// TODO: Add your implementation code here
return m_FilePath.AssignBSTR(newVal);
}
STDMETHODIMP CGHIndexs::get_CreatedDate(DATE* pVal)
{
*pVal=m_CreateDate;
return S_OK;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?