|
GnuCash 2.4.99
|
00001 /********************************************************************\ 00002 * assistant-stock-split.h -- stock split assistant for GnuCash * 00003 * Copyright (C) 2001 Gnumatic, Inc. * 00004 * Copyright (C) 2001 Dave Peticolas <dave@krondo.com> * 00005 * Copyright (C) 2003 Linas Vepstas <linas@linas.org> * 00006 * Copyright (C) 2011 Robert Fewell * 00007 * * 00008 * This program is free software; you can redistribute it and/or * 00009 * modify it under the terms of the GNU General Public License as * 00010 * published by the Free Software Foundation; either version 2 of * 00011 * the License, or (at your option) any later version. * 00012 * * 00013 * This program is distributed in the hope that it will be useful, * 00014 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00016 * GNU General Public License for more details. * 00017 * * 00018 * You should have received a copy of the GNU General Public License* 00019 * along with this program; if not, contact: * 00020 * * 00021 * Free Software Foundation Voice: +1-617-542-5942 * 00022 * 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 * 00023 * Boston, MA 02110-1301, USA gnu@gnu.org * 00024 \********************************************************************/ 00025 00026 #ifndef GNC_ASSISTANT_STOCK_SPLIT_H 00027 #define GNC_ASSISTANT_STOCK_SPLIT_H 00028 00029 #include "Account.h" 00030 00031 /********************************************************************\ 00032 * gnc_stock_split_dialog * 00033 * opens up a window to record a stock split * 00034 * * 00035 * Args: parent - the parent ofthis window * 00036 * initial - the initial account to use * 00037 * Return: nothing * 00038 \********************************************************************/ 00039 void gnc_stock_split_dialog (GtkWidget *parent, Account * initial); 00040 00041 #endif
1.7.4