mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-18 18:16:39 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@53593 954022d7-b5bf-4e40-9824-e11837661b57
45 lines
683 B
C++
45 lines
683 B
C++
|
|
// auto inserted precompiled begin
|
|
#include "precompiled_docxformat.h"
|
|
// auto inserted precompiled end
|
|
|
|
#include "External.h"
|
|
#include "../FileTypes.h"
|
|
|
|
|
|
namespace OOX
|
|
{
|
|
|
|
External::External()
|
|
{
|
|
}
|
|
|
|
|
|
External::External(const boost::filesystem::wpath& uri)
|
|
{
|
|
read(uri);
|
|
}
|
|
|
|
|
|
External::~External()
|
|
{
|
|
}
|
|
|
|
|
|
void External::read(const boost::filesystem::wpath& uri)
|
|
{
|
|
m_uri = uri;
|
|
}
|
|
|
|
|
|
void External::write(const boost::filesystem::wpath& filename, const boost::filesystem::wpath& directory, ContentTypes::File& content) const
|
|
{
|
|
}
|
|
|
|
|
|
const boost::filesystem::wpath External::Uri() const
|
|
{
|
|
return m_uri;
|
|
}
|
|
|
|
} // namespace OOX
|