/usr/include/gnucash/qof.h is in gnucash-common 1:2.6.12-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | /********************************************************************\
* qof.h -- Master QOF public include file *
* 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 *
* 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 *
* Boston, MA 02110-1301, USA gnu@gnu.org *
* *
\********************************************************************/
#ifndef QOF_H_
#define QOF_H_
/** @defgroup QOF Query Object Framework
@{
*/
/**
@addtogroup Date Date: Date and Time Printing, Parsing and Manipulation
@ingroup QOF
*/
/**
@addtogroup Entity Entity: Types, Identity and Instance Framework
@ingroup QOF
*/
/**
@addtogroup KVP KVP: Key-Value Pairs
@ingroup QOF
*/
/**
@addtogroup Math128 Math128: 128-bit Integer Math Library
@ingroup QOF
*/
/**
@addtogroup Numeric Numeric: Rational Number Handling w/ Rounding Error Control
@ingroup QOF
*/
/**
@addtogroup Object Object: Dynamic Object Class Framework
@ingroup QOF
*/
/**
@addtogroup Query Query: Querying for Objects
@ingroup QOF
*/
/** @addtogroup Event Event: QOF event handlers.
@ingroup QOF
*/
/** @addtogroup Choice Choice and collect : One to many links.
@ingroup QOF
*/
/** @addtogroup BookMerge Merging QofBook structures
@ingroup QOF
*/
/** \addtogroup Reference Referring to entities outside a partial book.
\ingroup QOF
*/
/**
@addtogroup Utilities Misc Utilities
@ingroup QOF
*/
/** @} */
#include <glib.h>
#include "qofid.h"
#include "qoflog.h"
#include "gnc-date.h"
#include "gnc-numeric.h"
#include "qofutil.h"
#include "guid.h"
#include "kvp_frame.h"
#include "kvp-util.h"
#include "kvp-util-p.h"
#include "qofbackend.h"
#include "qofid-p.h"
#include "qofinstance-p.h"
#include "qofbook.h"
#include "qofclass.h"
#include "qofevent.h"
#include "qofobject.h"
#include "qofquery.h"
#include "qofquerycore.h"
#include "qofsession.h"
#include "qofchoice.h"
#include "qofreference.h"
#include "qof-string-cache.h"
#endif /* QOF_H_ */
|