mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-14 13:50:25 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@54463 954022d7-b5bf-4e40-9824-e11837661b57
39 lines
669 B
C++
39 lines
669 B
C++
#ifndef _CPDOCCORE_WRITEDOCELEMENT_H_
|
|
#define _CPDOCCORE_WRITEDOCELEMENT_H_
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma once
|
|
#endif
|
|
|
|
#include <iosfwd>
|
|
|
|
namespace cpdoccore {
|
|
|
|
namespace xml {
|
|
|
|
class sax;
|
|
template <class StringT>
|
|
class attributes;
|
|
|
|
typedef attributes< ::std::wstring > attributes_wc;
|
|
|
|
typedef shared_ptr< attributes_wc >::Type attributes_wc_ptr;
|
|
}
|
|
|
|
namespace common {
|
|
|
|
class write_doc_element {
|
|
public:
|
|
virtual ::std::wostream & write_stream( ::std::wostream & _Wostream ) = 0;
|
|
virtual ~write_doc_element() = 0;
|
|
};
|
|
|
|
inline write_doc_element::~write_doc_element()
|
|
{
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
#endif // #ifndef _CPDOCCORE_WRITEDOCELEMENT_H_
|