annotate file descriptions to make lxr happy

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@3300 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Linas Vepstas 2000-12-13 21:15:53 +00:00
parent 7076421be3
commit f6f026aa42
25 changed files with 36 additions and 18 deletions

View File

@ -1,5 +1,5 @@
/********************************************************************\
* Account.c -- the Account data structure *
* Account.c -- Account data structure implementation *
* Copyright (C) 1997 Robin D. Clark *
* Copyright (C) 1997, 1998, 1999, 2000 Linas Vepstas *
* *

View File

@ -1,5 +1,5 @@
/********************************************************************\
* Account.h -- the Account data structure *
* Account.h -- Account handling public routines *
* Copyright (C) 1997 Robin D. Clark *
* Copyright (C) 1997-2000 Linas Vepstas <linas@linas.org> *
* *

View File

@ -1,5 +1,5 @@
/********************************************************************\
* AccountP.h -- the Account data structure *
* AccountP.h -- Account engine-private data structure *
* Copyright (C) 1997 Robin D. Clark *
* Copyright (C) 1997-2000, Linas Vepstas <linas@linas.org> *
* *

View File

@ -1,5 +1,5 @@
/********************************************************************\
* FileIO.c -- read from and writing to a datafile for gnucash *
* FileIO.c -- read and write binary format file for gnucash *
* (GnuCash/X-Accountant) *
* Copyright (C) 1997 Robin D. Clark *
* Copyright (C) 1997-2000 Linas Vepstas <linas@linas.org> *

View File

@ -1,5 +1,5 @@
/********************************************************************\
* FileIO.h -- read from and writing to a datafile for gnucash *
* FileIO.h -- read and write binary format file for gnucash *
* Copyright (C) 1997 Robin D. Clark *
* Copyright (C) 1998, 1999 Linas Vepstas *
* Copyright (C) 1999, 2000 Rob Browning *

View File

@ -1,5 +1,5 @@
/********************************************************************\
* FileIOP.h -- private header to read from and writing to a *
* FileIOP.h -- private header for binary file i/o *
* datafile for gnucash (X-Accountant) *
* Copyright (C) 1997 Robin D. Clark *
* Copyright (C) 1998, 1999 Linas Vepstas *

View File

@ -1,5 +1,5 @@
/********************************************************************\
* Group.c -- the main data structure of the program *
* Group.c -- chart of accounts (heirarchical tree of accounts) *
* Copyright (C) 1997 Robin D. Clark *
* Copyright (C) 1997-2000 Linas Vepstas <linas@linas.org> *
* *

View File

@ -1,5 +1,5 @@
/********************************************************************\
* Group.h -- the main data structure of the program *
* Group.h -- chart of accounts (heirarchical tree of accounts) *
* Copyright (C) 1997 Robin D. Clark *
* Copyright (C) 1997, 1998, 1999, 2000 Linas Vepstas *
* *

View File

@ -1,5 +1,5 @@
/********************************************************************\
* GroupP.h -- the main data structure of the program *
* GroupP.h -- private header file for chart of accounts *
* Copyright (C) 1997 Robin D. Clark *
* Copyright (C) 1997, 1998, 1999, 2000 Linas Vepstas *
* *

View File

@ -1,4 +1,6 @@
/********************************************************************\
* Scrub.c -- convert single-entry accounts into clean double-entry *
* *
* 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 *

View File

@ -1,4 +1,6 @@
/********************************************************************\
* Scrub.h -- convert single-entry accounts to clean double-entry *
* *
* 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 *

View File

@ -1,5 +1,5 @@
/********************************************************************\
* Transaction.c -- the transaction data structure *
* Transaction.c -- transaction & split implementation *
* Copyright (C) 1997 Robin D. Clark *
* Copyright (C) 1997-2000 Linas Vepstas <linas@linas.org> *
* Copyright (C) 2000 Bill Gribble <grib@billgribble.com> *

View File

@ -1,5 +1,5 @@
/********************************************************************\
* Transaction.h -- defines transaction for xacc (X-Accountant) *
* Transaction.h -- api for transactions & splits (journal entries) *
* Copyright (C) 1997 Robin D. Clark *
* Copyright (C) 1997, 1998, 1999, 2000 Linas Vepstas *
* *

View File

@ -1,5 +1,5 @@
/********************************************************************\
* TransactionP.h -- defines transaction for xacc (X-Accountant) *
* TransactionP.h -- private header for transaction & splits *
* Copyright (C) 1997 Robin D. Clark *
* Copyright (C) 1997, 1998, 1999, 2000 Linas Vepstas *
* Copyright (C) 2000 Bill Gribble *

View File

@ -1,4 +1,6 @@
/********************************************************************\
* gnc-book.c -- dataset access (set of accounting books) *
* *
* 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 *

View File

@ -1,4 +1,6 @@
/********************************************************************\
* gnc-book.h -- dataset access (set of accounting books) *
* *
* 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 *

View File

@ -1,5 +1,5 @@
/********************************************************************
* gnc_commodity.c -- representing tradable commodities *
* gnc-commodity.c -- api for tradable commodities (incl. currency) *
* Copyright (C) 2000 Bill Gribble *
* *
* This program is free software; you can redistribute it and/or *

View File

@ -1,5 +1,5 @@
/********************************************************************
* gnc_commodity.h -- representing tradable commodities *
* gnc-commodity.h -- api for tradable commodities (incl. currency) *
* Copyright (C) 2000 Bill Gribble *
* *
* This program is free software; you can redistribute it and/or *

View File

@ -1,5 +1,5 @@
/********************************************************************\
* io-gncbin.c -- read from and writing to a datafile for gnucash *
* io-gncbin.c -- read and write (old format) binary datafile *
* (GnuCash/X-Accountant) *
* Copyright (C) 1997 Robin D. Clark *
* Copyright (C) 1997-2000 Linas Vepstas <linas@linas.org> *

View File

@ -1,5 +1,5 @@
/********************************************************************\
* io-gncbin.h -- read from and writing to a datafile for gnucash *
* io-gncbin.h -- read and write (old format) binary datafile *
* (X-Accountant) *
* Copyright (C) 1997 Robin D. Clark *
* Copyright (C) 1998, 1999 Linas Vepstas *

View File

@ -1,3 +1,7 @@
/*
* io-gncxml-r.c -- read XML-format gnucash data file
*/
#ifndef _GNU_SOURCE
# define _GNU_SOURCE
# include <time.h>

View File

@ -1,3 +1,6 @@
/*
* io-gncxml-w.c -- write XML-format gnucash data file
*/
#define _GNU_SOURCE

View File

@ -1,3 +1,6 @@
/*
* io-gncxml.h -- api for new XML-based file format
*/
#ifndef __IO_GNCXML_H__
#define __IO_GNCXML_H__

View File

@ -1,5 +1,5 @@
/********************************************************************
* kvp_frame.h -- a key-value frame system for gnucash. *
* kvp_frame.c -- a key-value frame system for gnucash. *
* Copyright (C) 2000 Bill Gribble *
* *
* This program is free software; you can redistribute it and/or *

View File

@ -1,5 +1,5 @@
/********************************************************************\
* kvp_frame.h -- a key-value frame system for gnucash.
* kvp_frame.h -- a key-value frame system for gnucash. *
* Copyright (C) 2000 Bill Gribble *
* *
* This program is free software; you can redistribute it and/or *