mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-18 20:25:04 +08:00
22 lines
380 B
C++
22 lines
380 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
class CVbaFile;
|
|
typedef boost::shared_ptr<CVbaFile> CVbaFilePtr;
|
|
|
|
class CVbaReader
|
|
{
|
|
public:
|
|
CVbaReader(const std::wstring & vbaFileName, const std::wstring & vbaExtractFile);
|
|
~CVbaReader();
|
|
|
|
const std::wstring convert();
|
|
bool write();
|
|
private:
|
|
std::wstring vbaExtractFile_;
|
|
CVbaFilePtr vbaProject_file_;
|
|
};
|
|
|