mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 14:00:32 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@58816 954022d7-b5bf-4e40-9824-e11837661b57
17 lines
369 B
C++
17 lines
369 B
C++
// OfficeXlsFile.cpp : Implementation of COfficeXlsFile
|
|
|
|
#include "stdafx.h"
|
|
#include "OfficeXlsFile.h"
|
|
|
|
|
|
// COfficeXlsFile
|
|
|
|
HRESULT COfficeXlsFile::SaveToFile(BSTR sDstFileName, BSTR sSrcPath, BSTR sXMLOptions)
|
|
{
|
|
return E_NOTIMPL;
|
|
}
|
|
HRESULT COfficeXlsFile::LoadFromFile(BSTR sSrcFileName, BSTR sDstPath, BSTR sXMLOptions)
|
|
{
|
|
return E_NOTIMPL;
|
|
}
|