mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-14 19:01:18 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@58816 954022d7-b5bf-4e40-9824-e11837661b57
21 lines
317 B
C++
21 lines
317 B
C++
#include "stdafx.h"
|
|
#include "XLSXConverter.h"
|
|
|
|
namespace XLSX
|
|
{;
|
|
|
|
const bool XLSXConverter::convertToX(Document& doc)
|
|
{
|
|
return true; // Already the necessary format
|
|
}
|
|
|
|
|
|
const bool XLSXConverter::convertFromX(Document& doc)
|
|
{
|
|
return true; // Already the necessary format
|
|
}
|
|
|
|
|
|
} // namespace XLS
|
|
|