From: Aleš Křenek Date: Mon, 30 Apr 2007 17:00:39 +0000 (+0000) Subject: Don't break binary compatibility by adding new enum values in the middle X-Git-Tag: glite-lb-client-interface_R_2_3_2_1~1 X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=3ac0a2a20b1e38517ee2f1bcc4218466f0cf7aa7;p=jra1mw.git Don't break binary compatibility by adding new enum values in the middle --- 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. */