2010-10-14 08:27:31 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-07-02 10:15:23 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2013-10-23 19:14:56 +02:00
|
|
|
#ifndef INCLUDED_SVL_LCKBITEM_HXX
|
|
|
|
#define INCLUDED_SVL_LCKBITEM_HXX
|
2007-04-11 18:26:34 +00:00
|
|
|
|
2014-01-29 21:56:01 -02:00
|
|
|
#include <svl/poolitem.hxx>
|
2013-11-09 15:22:49 -06:00
|
|
|
#include <svl/svldllapi.h>
|
2007-04-11 18:26:34 +00:00
|
|
|
#include <tools/rtti.hxx>
|
|
|
|
#include <tools/stream.hxx>
|
|
|
|
|
|
|
|
class SVL_DLLPUBLIC SfxLockBytesItem : public SfxPoolItem
|
|
|
|
{
|
|
|
|
SvLockBytesRef _xVal;
|
|
|
|
|
|
|
|
public:
|
2014-03-26 11:54:10 +01:00
|
|
|
TYPEINFO_OVERRIDE();
|
2007-04-11 18:26:34 +00:00
|
|
|
SfxLockBytesItem();
|
2010-07-29 10:56:19 +08:00
|
|
|
SfxLockBytesItem( sal_uInt16 nWhich, SvStream & );
|
2007-04-11 18:26:34 +00:00
|
|
|
SfxLockBytesItem( const SfxLockBytesItem& );
|
2014-04-01 19:18:35 +02:00
|
|
|
virtual ~SfxLockBytesItem();
|
2007-04-11 18:26:34 +00:00
|
|
|
|
2014-03-26 16:37:00 +01:00
|
|
|
virtual bool operator==( const SfxPoolItem& ) const SAL_OVERRIDE;
|
|
|
|
virtual SfxPoolItem* Clone( SfxItemPool *pPool = 0 ) const SAL_OVERRIDE;
|
|
|
|
virtual SfxPoolItem* Create(SvStream &, sal_uInt16 nItemVersion) const SAL_OVERRIDE;
|
|
|
|
virtual SvStream& Store(SvStream &, sal_uInt16 nItemVersion ) const SAL_OVERRIDE;
|
2007-04-11 18:26:34 +00:00
|
|
|
|
|
|
|
SvLockBytes* GetValue() const { return _xVal; }
|
|
|
|
|
2010-10-04 15:23:50 +01:00
|
|
|
virtual bool PutValue ( const com::sun::star::uno::Any& rVal,
|
2014-03-26 16:37:00 +01:00
|
|
|
sal_uInt8 nMemberId = 0 ) SAL_OVERRIDE;
|
2010-10-04 15:23:50 +01:00
|
|
|
virtual bool QueryValue( com::sun::star::uno::Any& rVal,
|
2014-03-26 16:37:00 +01:00
|
|
|
sal_uInt8 nMemberId = 0 ) const SAL_OVERRIDE;
|
2007-04-11 18:26:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2010-10-14 08:27:31 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|