mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-19 22:01:45 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@53593 954022d7-b5bf-4e40-9824-e11837661b57
24 lines
539 B
C++
24 lines
539 B
C++
#pragma once
|
|
#ifndef OOX_EXTERNALIMAGE_INCLUDE_H_
|
|
#define OOX_EXTERNALIMAGE_INCLUDE_H_
|
|
|
|
#include "External.h"
|
|
|
|
|
|
namespace OOX
|
|
{
|
|
class ExternalImage : public External
|
|
{
|
|
public:
|
|
ExternalImage();
|
|
ExternalImage(const boost::filesystem::wpath& uri);
|
|
~ExternalImage();
|
|
|
|
public:
|
|
virtual const FileType type() const;
|
|
virtual const boost::filesystem::wpath DefaultDirectory() const;
|
|
virtual const boost::filesystem::wpath DefaultFileName() const;
|
|
};
|
|
} // namespace OOX
|
|
|
|
#endif // OOX_EXTERNALIMAGE_INCLUDE_H_
|