Files
core/ASCOfficeOdtFile/Source/XML/Extension/WriteIf.h
Elen.Subbotina 6138139c4e исправлен проект - подключен "старый" DocxFormat (тот который с AVS - без вытирания буста)
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@53593 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-20 22:37:54 +03:00

37 lines
1.7 KiB
C++

#pragma once
#ifndef XML_EXTENSION_WRITE_IF_INCLUDE_H_
#define XML_EXTENSION_WRITE_IF_INCLUDE_H_
#include "nullable.h"
#include "property.h"
#include "nullable_property.h"
#include "./../XName.h"
#include "./../XNode.h"
#include "./../XElement.h"
#include "./../XAttribute.h"
namespace XML
{
const XML::XNode WriteIf(const XName& xname, const bool write);
const XML::XNode WriteIf(const XName& xname, const nullable<bool> write);
const XML::XNode WriteIf(const XName& xname, const property<bool> write);
const XML::XNode WriteIf(const XName& xname, const nullable_property<bool> write);
const XML::XNode WriteIf(const XML::XElement& element, const bool write);
const XML::XNode WriteIf(const XML::XElement& element, const nullable<bool> write);
const XML::XNode WriteIf(const XML::XElement& element, const property<bool> write);
const XML::XNode WriteIf(const XML::XElement& element, const nullable_property<bool> write);
const XML::XNode WriteIf(const XML::XNode& node, const bool write);
const XML::XNode WriteIf(const XML::XNode& node, const nullable<bool> write);
const XML::XNode WriteIf(const XML::XNode& node, const property<bool> write);
const XML::XNode WriteIf(const XML::XNode& node, const nullable_property<bool> write);
const XML::XAttribute WriteIf(const XML::XAttribute& attribute, const bool write);
const XML::XAttribute WriteIf(const XML::XAttribute& attribute, const nullable<bool> write);
const XML::XAttribute WriteIf(const XML::XAttribute& attribute, const property<bool> write);
const XML::XAttribute WriteIf(const XML::XAttribute& attribute, const nullable_property<bool> write);
} // namespace XML
#endif // XML_EXTENSION_WRITE_IF_INCLUDE_H_