mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 03:08:28 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@61935 954022d7-b5bf-4e40-9824-e11837661b57
41 lines
801 B
C++
41 lines
801 B
C++
#pragma once
|
|
#include "../Reader/Records.h"
|
|
|
|
class CRecordDocRoutingSlipAtom : public CUnknownRecord
|
|
{
|
|
struct SDocRoutingSlipAtom
|
|
{
|
|
USHORT m_nType;
|
|
USHORT m_nLength;
|
|
CString m_strText;
|
|
};
|
|
|
|
UINT m_nLength;
|
|
UINT m_nRecipientCount;
|
|
UINT m_nCurrentRecipient;
|
|
USHORT m_usFlags;
|
|
|
|
SDocRoutingSlipAtom m_oOriginatorString;
|
|
SDocRoutingSlipAtom m_oRgRecipientRoutingSlipStrings;
|
|
SDocRoutingSlipAtom m_oSubjectString;
|
|
SDocRoutingSlipAtom m_oMessageString;
|
|
|
|
public:
|
|
|
|
CRecordDocRoutingSlipAtom()
|
|
{
|
|
}
|
|
|
|
~CRecordDocRoutingSlipAtom()
|
|
{
|
|
}
|
|
|
|
virtual void ReadFromStream(SRecordHeader & oHeader, POLE::Stream* pStream)
|
|
{
|
|
return CUnknownRecord::ReadFromStream(oHeader, pStream);
|
|
}
|
|
virtual CString ToString()
|
|
{
|
|
return CUnknownRecord::ToString();
|
|
}
|
|
}; |