/* This file is part of the KDE project
   Copyright (C) 1998, 1999 Torben Weis <weis@kde.org>
 
   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.
 
   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
   Library General Public License for more details.
 
   You should have received a copy of the GNU Library General Public License
   along with this library; see the file COPYING.LIB.  If not, write to
   the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
   Boston, MA 02111-1307, USA.
*/     

#include "proxy.h"
#include "trader_main.h"

Proxy::Proxy( Trader* _trader ) : ::TraderComponents( _trader ), ::SupportAttributes( _trader ),
	                          CosTrading::Proxy_skel()
{
  m_pTrader5 = _trader;
}
  
char* Proxy::export_proxy( CosTrading::Lookup_ptr target, const char* type,
			   const CosTrading::PropertySeq& properties, CORBA::Boolean if_match_all,
			   const char* recipe, const CosTrading::PolicySeq& policies_to_pass_on )
{
  return m_pTrader5->export_proxy( target, type, properties, if_match_all, recipe, policies_to_pass_on );
}

void Proxy::withdraw_proxy( const char* id )
{
  m_pTrader5->withdraw_proxy( id );
}

CosTrading::Proxy::ProxyInfo* Proxy::describe_proxy( const char* id )
{
  return m_pTrader5->describe_proxy( id );
}
