2003-06-10 10:07:52 -05:00
|
|
|
/********************************************************************\
|
|
|
|
* SX-book-p.h -- private scheduled transaction dataset access *
|
|
|
|
* *
|
|
|
|
* 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 *
|
2005-11-16 23:35:02 -06:00
|
|
|
* 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 *
|
|
|
|
* Boston, MA 02110-1301, USA gnu@gnu.org *
|
2003-06-10 10:07:52 -05:00
|
|
|
\********************************************************************/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* FILE:
|
|
|
|
* SX-book-p.h
|
|
|
|
*
|
|
|
|
* FUNCTION:
|
|
|
|
* Private members of SX-in-book utils.
|
|
|
|
* See src/doc/books.txt for design overview.
|
|
|
|
*
|
|
|
|
* HISTORY:
|
|
|
|
* Copyright (c) 2003 Linas Vepstas <linas@linas.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GNC_SX_BOOK_P_H
|
|
|
|
#define GNC_SX_BOOK_P_H
|
|
|
|
|
2005-11-21 13:31:44 -06:00
|
|
|
#include "qof.h"
|
2007-01-19 17:45:45 -06:00
|
|
|
#include "SX-book.h"
|
2003-06-24 19:52:46 -05:00
|
|
|
|
2003-06-10 10:07:52 -05:00
|
|
|
/* ====================================================================== */
|
|
|
|
|
2023-01-23 07:57:38 -06:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2007-01-19 17:45:45 -06:00
|
|
|
SchedXactions* gnc_collection_get_schedxactions(const QofCollection *col);
|
2003-06-10 10:07:52 -05:00
|
|
|
|
2007-02-22 19:23:31 -06:00
|
|
|
/* Associate the given template root account with a book */
|
|
|
|
void gnc_book_set_template_root (QofBook *book, Account *templateRoot);
|
2003-10-19 00:11:07 -05:00
|
|
|
|
2003-06-10 17:22:47 -05:00
|
|
|
gboolean gnc_sxtt_register (void);
|
|
|
|
|
2023-01-23 07:57:38 -06:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2003-06-10 10:07:52 -05:00
|
|
|
#endif /* GNC_SX_BOOK_P_H */
|