mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-18 19:19:44 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@53593 954022d7-b5bf-4e40-9824-e11837661b57
17 lines
410 B
C++
17 lines
410 B
C++
#pragma once
|
|
#ifndef OOX_FILE_FACTORY_INCLUDE_H_
|
|
#define OOX_FILE_FACTORY_INCLUDE_H_
|
|
|
|
#include <boost/filesystem.hpp>
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
|
|
namespace OOX
|
|
{
|
|
class File;
|
|
namespace Rels {class RelationShip;}
|
|
|
|
const boost::shared_ptr<File> CreateFile(const boost::filesystem::wpath& path, const Rels::RelationShip& relation);
|
|
} // namespace OOX
|
|
|
|
#endif // OOX_FILE_FACTORY_INCLUDE_H_
|