mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-17 11:00:04 +08:00
15 lines
270 B
C++
15 lines
270 B
C++
#include "CWebSettingsXml.h"
|
|
#include "CWebSettings.h"
|
|
|
|
CWebSettingsXml::CWebSettingsXml()
|
|
: CXmlFile()
|
|
{
|
|
}
|
|
|
|
void CWebSettingsXml::SetDefoult()
|
|
{
|
|
CWebSettings *oWebSettings = new CWebSettings;
|
|
oWebSettings->SetDefoult();
|
|
SetXmlStructure(oWebSettings);
|
|
}
|