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