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
28 lines
753 B
C++
28 lines
753 B
C++
#pragma once
|
|
#ifndef OOX_WEBSETTINGS_INCLUDE_H_
|
|
#define OOX_WEBSETTINGS_INCLUDE_H_
|
|
|
|
#include "File.h"
|
|
|
|
|
|
namespace OOX
|
|
{
|
|
class WebSettings : public OOX::File
|
|
{
|
|
public:
|
|
WebSettings();
|
|
WebSettings(const boost::filesystem::wpath& filename);
|
|
virtual ~WebSettings();
|
|
|
|
public:
|
|
virtual void read(const boost::filesystem::wpath& filename);
|
|
virtual void write(const boost::filesystem::wpath& filename, const boost::filesystem::wpath& directory, ContentTypes::File& content) const;
|
|
|
|
public:
|
|
virtual const FileType type() const;
|
|
virtual const boost::filesystem::wpath DefaultDirectory() const;
|
|
virtual const boost::filesystem::wpath DefaultFileName() const;
|
|
};
|
|
} // namespace OOX
|
|
|
|
#endif // OOX_WEBSETTING_INCLDUE_H_
|