Delete unused dialog-exchange.h

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@13465 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Chris Shoemaker
2006-03-04 00:27:38 +00:00
parent cfe743fd8e
commit 10138bb1d3

View File

@@ -1,48 +0,0 @@
/********************************************************************
* dialog-exchange.h -- Dialog to enter exchange rates *
* *
* Copyright (C) 2002 Derek Atkins <derek@ihtfp.com> *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License as *
* published by the Free Software Foundation; either version 2 of *
* the License, or (at your option) any later version. *
* *
* This program 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 General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License*
* along with this program; if not, contact: *
* *
* Free Software Foundation Voice: +1-617-542-5942 *
* 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 *
* Boston, MA 02110-1301, USA gnu@gnu.org *
********************************************************************/
#ifndef GNC_DIALOG_EXCHANGE_H
#define GNC_DIALOG_EXCHANGE_H
#include "gnc-pricedb.h"
#include "gnc-commodity.h"
#include "qof.h"
/* Create a dialog to enter/modify an Split's exchange rate. Look in
* the pricedb for potential entries if exchange_rate points to a
* 'zero' value; new/changed entries are stored in the pricedb
* (overwriting existing pricedb entries if they exist).
*
* If the run was successful (user hit 'ok'), fill in the (new)
* exchange rate, store it in the pricedb, and return TRUE. Otherwise
* return FALSE (and do not touch exchange_rate)
*/
gboolean
gnc_ui_exchange_dialog_new (GNCPriceDB * pricedb,
gnc_numeric amount,
gnc_commodity * from,
gnc_commodity * to,
Timespec date,
gnc_numeric * exchange_rate);
#endif /* GNC_DIALOG_EXCHANGE_H */