|
GnuCash 2.4.99
|
00001 /********************************************************************\ 00002 * gnc-lot-p.h -- AR/AP invoices; inventory lots; stock lots * 00003 * * 00004 * This program is free software; you can redistribute it and/or * 00005 * modify it under the terms of the GNU General Public License as * 00006 * published by the Free Software Foundation; either version 2 of * 00007 * the License, or (at your option) any later version. * 00008 * * 00009 * This program is distributed in the hope that it will be useful, * 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00012 * GNU General Public License for more details. * 00013 * * 00014 * You should have received a copy of the GNU General Public License* 00015 * along with this program; if not, contact: * 00016 * * 00017 * Free Software Foundation Voice: +1-617-542-5942 * 00018 * 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 * 00019 * Boston, MA 02110-1301, USA gnu@gnu.org * 00020 \********************************************************************/ 00021 00022 00023 /* 00024 * FILE: 00025 * gnc-lot-p.h 00026 * 00027 * FUNCTION: 00028 * Lots implement the fundamental conceptual idea behind invoices, 00029 * inventory lots, and stock market investment lots. See the file 00030 * src/doc/lots.txt for implementation overview. 00031 * 00032 * HISTORY: 00033 * Created by Linas Vepstas May 2002 00034 * Copyright (c) 2002 Linas Vepstas <linas@linas.org> 00035 */ 00036 00037 #ifndef GNC_LOT_P_H 00038 #define GNC_LOT_P_H 00039 00040 #define gnc_lot_set_guid(L,G) qof_instance_set_guid(QOF_INSTANCE(L),&(G)) 00041 00042 /* Register with the Query engine */ 00043 gboolean gnc_lot_register (void); 00044 00045 #endif /* GNC_LOT_P_H */
1.7.4