From 676d19aaf9ebaf39f12321c444608f47ed326899 Mon Sep 17 00:00:00 2001 From: Linas Vepstas Date: Wed, 11 Jun 2003 17:04:08 +0000 Subject: [PATCH] move over typedef git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@8579 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/engine/gnc-book.h | 5 +++++ src/engine/gnc-engine.h | 2 -- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/engine/gnc-book.h b/src/engine/gnc-book.h index 411ec4d247..6c11add274 100644 --- a/src/engine/gnc-book.h +++ b/src/engine/gnc-book.h @@ -33,6 +33,8 @@ #ifndef GNC_BOOK_H #define GNC_BOOK_H +#include + #include "GNCId.h" #include "kvp_frame.h" @@ -42,6 +44,9 @@ */ typedef struct gnc_book_struct GNCBook; +/** GList of GNCBook */ +typedef GList BookList; + /** Allocate, initialise and return a new GNCBook. The new book will contain a newly allocated AccountGroup */ GNCBook * gnc_book_new (void); diff --git a/src/engine/gnc-engine.h b/src/engine/gnc-engine.h index 2529784be4..52a651e67a 100644 --- a/src/engine/gnc-engine.h +++ b/src/engine/gnc-engine.h @@ -103,8 +103,6 @@ typedef struct gnc_lot_struct GNCLot; /** GList of Account */ typedef GList AccountList; /** GList of GNCBook */ -typedef GList BookList; -/** GList of GNCLot */ typedef GList LotList; /** GList of Split */ typedef GList SplitList;