28fc7f25e3
2006/01/03 08:30:27 oj 1.1.2.1: export controller
52 lines
1.7 KiB
C++
52 lines
1.7 KiB
C++
/*************************************************************************
|
|
*
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
*
|
|
* $RCSfile: IReference.hxx,v $
|
|
*
|
|
* $Revision: 1.2 $
|
|
*
|
|
* last change: $Author: rt $ $Date: 2007-07-06 07:48:36 $
|
|
*
|
|
* The Contents of this file are made available subject to
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
|
*
|
|
*
|
|
* GNU Lesser General Public License Version 2.1
|
|
* =============================================
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License version 2.1, as published by the Free Software Foundation.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
* MA 02111-1307 USA
|
|
*
|
|
************************************************************************/
|
|
#ifndef DBAUI_IREFERENCE_HXX
|
|
#define DBAUI_IREFERENCE_HXX
|
|
|
|
#include "dbaccessdllapi.h"
|
|
|
|
namespace dbaui
|
|
{
|
|
// interface for controller depended calls like commands
|
|
class DBACCESS_DLLPUBLIC SAL_NO_VTABLE IReference
|
|
{
|
|
public:
|
|
virtual void SAL_CALL acquire( ) throw () = 0;
|
|
virtual void SAL_CALL release( ) throw () = 0;
|
|
};
|
|
}
|
|
#endif // DBAUI_IREFERENCE_HXX
|
|
|
|
|