Move the GetParameter function into .h from P.h -- it's useful outside

the engine


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@6697 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Derek Atkins 2002-02-08 05:08:18 +00:00
parent d159b826f4
commit 4f98e2cb49
2 changed files with 4 additions and 3 deletions

View File

@ -67,4 +67,8 @@ void gncQueryObjectRegister (GNCIdTypeConst obj_name,
QueryCoreType gncQueryObjectParameterType (GNCIdTypeConst obj_name,
const char *param_name);
/* Return the registered Object Definition for the requested parameter */
const QueryObjectDef * gncQueryObjectGetParameter (GNCIdTypeConst obj_name,
const char *parameter);
#endif /* GNC_QUERYOBJECT_H */

View File

@ -12,9 +12,6 @@
void gncQueryObjectInit(void);
void gncQueryObjectShutdown (void);
const QueryObjectDef * gncQueryObjectGetParameter (GNCIdTypeConst obj_name,
const char *parameter);
QueryAccess gncQueryObjectGetParameterGetter (GNCIdTypeConst obj_name,
const char *parameter);