From 7f5acb8fbbb686e01171f0f0c1d21b0f0e143123 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 5 Aug 1999 23:44:01 +0000 Subject: [PATCH] eliminated app types "seconds" and "nanoseconds" in favor of atomic app type "timeStamp" --- src/gdd/gddAppDefs.cc | 6 ++++-- src/gdd/gddAppTable.h | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/gdd/gddAppDefs.cc b/src/gdd/gddAppDefs.cc index 5359b93dd..a88dec027 100644 --- a/src/gdd/gddAppDefs.cc +++ b/src/gdd/gddAppDefs.cc @@ -4,6 +4,9 @@ // $Id$ // // $Log$ +// Revision 1.9 1997/08/05 00:51:13 jhill +// fixed problems in aitString and the conversion matrix +// // Revision 1.8 1997/04/23 17:13:00 jhill // fixed export of symbols from WIN32 DLL // @@ -78,8 +81,7 @@ void gddApplicationTypeTable::GenerateTypes(void) // not really required attributes - they are contained in DDs registerApplicationType(GDD_NAME_STATUS); registerApplicationType(GDD_NAME_SEVERITY); - registerApplicationType(GDD_NAME_SECONDS); - registerApplicationType(GDD_NAME_NANOSECONDS); + registerApplicationType(GDD_NAME_TIME_STAMP); registerApplicationType(GDD_NAME_PV_NAME); // required attributes diff --git a/src/gdd/gddAppTable.h b/src/gdd/gddAppTable.h index 0ad84740b..072910974 100644 --- a/src/gdd/gddAppTable.h +++ b/src/gdd/gddAppTable.h @@ -8,6 +8,9 @@ * $Id$ * * $Log$ + * Revision 1.6 1999/04/30 15:24:53 jhill + * fixed improper container index bug + * * Revision 1.5 1997/04/23 17:13:02 jhill * fixed export of symbols from WIN32 DLL * @@ -59,8 +62,7 @@ #define GDD_NAME_MENUITEM "menuitem" #define GDD_NAME_STATUS "status" #define GDD_NAME_SEVERITY "severity" -#define GDD_NAME_SECONDS "seconds" -#define GDD_NAME_NANOSECONDS "nanoseconds" +#define GDD_NAME_TIME_STAMP "timeStamp" #define GDD_NAME_ALL "all" #define GDD_NAME_ATTRIBUTES "attributes" #define GDD_NAME_PV_NAME "name"