diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-04-19 12:20:44 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-04-19 12:20:44 +0000 |
commit | ab5dc3798b4450d35cc734056d173262a7992689 (patch) | |
tree | 0f97480abaa9875b8ac5a42594d8de7c0de4ec06 /dbaccess/source/ui/inc/IUpdateHelper.hxx | |
parent | 95ffb94cfd5963a9ef814373195786533ee50963 (diff) |
INTEGRATION: CWS oj17 (1.1.2); FILE ADDED
2006/03/10 10:27:50 oj 1.1.2.1: #i62561# new helper classes
Diffstat (limited to 'dbaccess/source/ui/inc/IUpdateHelper.hxx')
-rw-r--r-- | dbaccess/source/ui/inc/IUpdateHelper.hxx | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/dbaccess/source/ui/inc/IUpdateHelper.hxx b/dbaccess/source/ui/inc/IUpdateHelper.hxx new file mode 100644 index 000000000000..d12967e5f015 --- /dev/null +++ b/dbaccess/source/ui/inc/IUpdateHelper.hxx @@ -0,0 +1,53 @@ +/************************************************************************* + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: IUpdateHelper.hxx,v $ + * + * $Revision: 1.2 $ + * + * last change: $Author: hr $ $Date: 2006-04-19 13:20:44 $ + * + * 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_IUPDATEHELPER_HXX +#define DBAUI_IUPDATEHELPER_HXX + +namespace dbaui +{ + class SAL_NO_VTABLE IUpdateHelper + { + public: + virtual void updateString(sal_Int32 _nPos, const ::rtl::OUString& _sValue) = 0; + virtual void updateDouble(sal_Int32 _nPos,const double& _nValue) = 0; + virtual void updateInt(sal_Int32 _nPos,const sal_Int32& _nValue) = 0; + virtual void updateNull(sal_Int32 _nPos, ::sal_Int32 sqlType) = 0; + virtual void moveToInsertRow() = 0; + virtual void insertRow() = 0; + }; +} + +#endif // DBAUI_IUPDATEHELPER_HXX + |