docs: Don't document object methods

They're only going to be used by the core daemon, not during
implementation of the actions or drivers.
This commit is contained in:
Bastien Nocera 2020-09-04 15:37:57 +02:00
parent 72b5c548ea
commit 38df9b32ce
2 changed files with 4 additions and 0 deletions

View file

@ -25,6 +25,8 @@ struct _PpdActionClass
GError **error);
};
#ifndef __GTK_DOC_IGNORE__
gboolean ppd_action_probe (PpdAction *action);
gboolean ppd_action_activate_profile (PpdAction *action, PpdProfile profile, GError **error);
const char *ppd_action_get_action_name (PpdAction *action);
#endif

View file

@ -25,9 +25,11 @@ struct _PpdDriverClass
GError **error);
};
#ifndef __GTK_DOC_IGNORE__
gboolean ppd_driver_probe (PpdDriver *driver);
gboolean ppd_driver_activate_profile (PpdDriver *driver, PpdProfile profile, GError **error);
const char *ppd_driver_get_driver_name (PpdDriver *driver);
PpdProfile ppd_driver_get_profiles (PpdDriver *driver);
const char *ppd_driver_get_performance_inhibited (PpdDriver *driver);
gboolean ppd_driver_is_performance_inhibited (PpdDriver *driver);
#endif