mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-14 03:46:15 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@64101 954022d7-b5bf-4e40-9824-e11837661b57
20 lines
301 B
C++
20 lines
301 B
C++
#pragma once
|
|
|
|
#include <list>
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
namespace XLS
|
|
{
|
|
|
|
class CFStream;
|
|
typedef boost::shared_ptr<CFStream> CFStreamPtr;
|
|
|
|
class CFRecord;
|
|
typedef boost::shared_ptr<CFRecord> CFRecordPtr;
|
|
|
|
typedef std::list<CFRecordPtr> CFRecordPtrList;
|
|
|
|
|
|
} // namespace XLS
|
|
|