summaryrefslogtreecommitdiff
path: root/src/arch/operand-int.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/operand-int.h')
-rw-r--r--src/arch/operand-int.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/arch/operand-int.h b/src/arch/operand-int.h
index 3caca46..05c58d0 100644
--- a/src/arch/operand-int.h
+++ b/src/arch/operand-int.h
@@ -26,22 +26,9 @@
#include "operand.h"
-#include "sharing/instance-int.h"
-/* Fournit le gestionnaire de partages attribué à un type. */
-typedef GShareManager * (* get_operand_manager_fc) (void);
-
-/* Initialise un nouvel objet partagé avec des informations. */
-typedef bool (* apply_operand_template_fc) (GArchOperand *, const GArchOperand *);
-
-/* Procède à l'initialisation de l'interface de partage. */
-typedef void (* define_operand_template_fc) (const GArchOperand *, GArchOperand *);
-
-/* Initialise un nouvel objet partagé avec des informations. */
-typedef bool (* free_operand_template_fc) (const GArchOperand *, GArchOperand *);
-
/* Compare un opérande avec un autre. */
typedef int (* operand_compare_fc) (const GArchOperand *, const GArchOperand *);
@@ -78,12 +65,6 @@ struct _GArchOperandClass
{
GObjectClass parent; /* A laisser en premier */
- get_operand_manager_fc get_manager; /* Accès au gestionnaire */
-
- apply_operand_template_fc apply_template; /* Intialisation d'instance */
- define_operand_template_fc define_template; /* Copie de détails */
- free_operand_template_fc free_template; /* Libération d'un patron */
-
operand_compare_fc compare; /* Comparaison d'opérandes */
operand_print_fc print; /* Texte humain équivalent */
operand_build_tooltip_fc build_tooltip; /* Construction de description */