From 3ac0a2a20b1e38517ee2f1bcc4218466f0cf7aa7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ale=C5=A1=20K=C5=99enek?= Date: Mon, 30 Apr 2007 17:00:39 +0000 Subject: [PATCH] Don't break binary compatibility by adding new enum values in the middle --- org.glite.lb.client-interface/interface/Event.h.T | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/org.glite.lb.client-interface/interface/Event.h.T b/org.glite.lb.client-interface/interface/Event.h.T index b51267b..4e293ca 100644 --- a/org.glite.lb.client-interface/interface/Event.h.T +++ b/org.glite.lb.client-interface/interface/Event.h.T @@ -124,8 +124,6 @@ public: /** Symbolic names for types of attribute values. */ enum AttrType { INT_T, /**< Integer value. */ - FLOAT_T, /**< Float value. */ - DOUBLE_T, /**< Double value. */ STRING_T, /**< String value. */ TIMEVAL_T, /**< Time value (ie. struct timeval). */ @@ -133,7 +131,9 @@ public: LOGSRC_T, /**< Source of the event (integer). */ JOBID_T, /**< JobId value. */ - NOTIFID_T /**< NotifId value. */ + NOTIFID_T, /**< NotifId value. */ + FLOAT_T, /**< Float value. */ + DOUBLE_T, /**< Double value. */ }; Type type; /**< Type of the event as defined by Type. */ -- 1.8.2.3