2001-04-26 05:40:21 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2005-09-08 08:26:59 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2001-04-26 05:40:21 -05:00
|
|
|
*
|
2005-09-08 08:26:59 -05:00
|
|
|
* $RCSfile: dbtreemodel.cxx,v $
|
2001-04-26 05:40:21 -05:00
|
|
|
*
|
2006-10-05 07:02:00 -05:00
|
|
|
* $Revision: 1.17 $
|
2001-04-26 05:40:21 -05:00
|
|
|
*
|
2006-10-05 07:02:00 -05:00
|
|
|
* last change: $Author: kz $ $Date: 2006-10-05 13:01:33 $
|
2001-04-26 05:40:21 -05:00
|
|
|
*
|
2005-09-08 08:26:59 -05:00
|
|
|
* The Contents of this file are made available subject to
|
|
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
2001-04-26 05:40:21 -05:00
|
|
|
*
|
|
|
|
*
|
2005-09-08 08:26:59 -05:00
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
* =============================================
|
|
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
2001-04-26 05:40:21 -05:00
|
|
|
*
|
2005-09-08 08:26:59 -05:00
|
|
|
* 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.
|
2001-04-26 05:40:21 -05:00
|
|
|
*
|
2005-09-08 08:26:59 -05:00
|
|
|
* 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.
|
2001-04-26 05:40:21 -05:00
|
|
|
*
|
2005-09-08 08:26:59 -05:00
|
|
|
* 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
|
2001-04-26 05:40:21 -05:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-17 00:57:47 -05:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_dbaccess.hxx"
|
|
|
|
|
2001-04-26 05:40:21 -05:00
|
|
|
#ifndef DBAUI_DBTREEMODEL_HXX
|
|
|
|
#include "dbtreemodel.hxx"
|
|
|
|
#endif
|
|
|
|
#ifndef _DBU_RESOURCE_HRC_
|
|
|
|
#include "dbu_resource.hrc"
|
|
|
|
#endif
|
|
|
|
#ifndef _OSL_DIAGNOSE_H_
|
|
|
|
#include <osl/diagnose.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace dbaui
|
|
|
|
{
|
|
|
|
//========================================================================
|
|
|
|
//= DBTreeListModel
|
|
|
|
//========================================================================
|
2001-08-16 08:22:02 -05:00
|
|
|
DBG_NAME(DBTreeListUserData)
|
2001-04-26 05:40:21 -05:00
|
|
|
//------------------------------------------------------------------------
|
|
|
|
DBTreeListModel::DBTreeListUserData::DBTreeListUserData()
|
2001-05-14 05:59:28 -05:00
|
|
|
:eType(SbaTableQueryBrowser::etQuery)
|
2001-04-26 05:40:21 -05:00
|
|
|
{
|
2001-08-15 07:14:59 -05:00
|
|
|
DBG_CTOR(DBTreeListUserData,NULL);
|
|
|
|
}
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
DBTreeListModel::DBTreeListUserData::~DBTreeListUserData()
|
|
|
|
{
|
|
|
|
DBG_DTOR(DBTreeListUserData,NULL);
|
2001-04-26 05:40:21 -05:00
|
|
|
}
|
2006-06-19 20:57:13 -05:00
|
|
|
}
|