summaryrefslogtreecommitdiff
path: root/dnn
diff options
context:
space:
mode:
authorchatty1995-08-02 10:22:28 +0000
committerchatty1995-08-02 10:22:28 +0000
commit8560817afe733401f3e29d172ab8b46ceba120a6 (patch)
tree1818efe7544ca2fa5e5f130ca080563437043cfc /dnn
parent7e45ec4b6e34b2d96ba10b4d898e201d67b34d5e (diff)
downloadivy-league-8560817afe733401f3e29d172ab8b46ceba120a6.zip
ivy-league-8560817afe733401f3e29d172ab8b46ceba120a6.tar.gz
ivy-league-8560817afe733401f3e29d172ab8b46ceba120a6.tar.bz2
ivy-league-8560817afe733401f3e29d172ab8b46ceba120a6.tar.xz
Added DnnEventType::GetName()
Diffstat (limited to 'dnn')
-rw-r--r--dnn/Event.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/dnn/Event.h b/dnn/Event.h
index 40197fc..7609036 100644
--- a/dnn/Event.h
+++ b/dnn/Event.h
@@ -3,7 +3,7 @@
*
* by Stephane Chatty
*
- * Copyright 1993-1994
+ * Copyright 1993-1995
* Centre d'Etudes de la Navigation Aerienne (CENA)
*
* Events.
@@ -75,6 +75,7 @@ public:
DnnEventType (const char*, const DnnEventFeatureList&);
~DnnEventType ();
inline int operator == (const DnnEventType& evt) const { return (this == &evt); }
+inline const char* GetName () const { return Name; }
inline int GetTotalSize () const { return (NbFeatures) > 0 ? FeaturesOffsets [NbFeatures - 1] : 0; }
inline int GetOffset (int i) const { return i ? FeaturesOffsets [i-1] : 0; }
inline int GetSize (int i) const { return FeaturesOffsets [i] - (i ? FeaturesOffsets [i-1] : 0); }