Files
core/ASCOfficeXlsFile2/source/XlsFormat/Binary/BinSmartPointers.h
Elen.Subbotina 2ebf7beee9 XlsFile2 linux build prepare
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@64101 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-21 00:23:05 +03:00

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