]> git.mxchange.org Git - simgear.git/blobdiff - simgear/canvas/events/KeyboardEvent.hxx
Add simple keyboard event demo application.
[simgear.git] / simgear / canvas / events / KeyboardEvent.hxx
index 385590c8271694c7449c252bab665cdecbc56002..beb2380195eba7a2aac1414ff58a9da05ea6bfd3 100644 (file)
@@ -61,14 +61,14 @@ namespace canvas
       bool isModifier() const;
 
     protected:
-      uint32_t _key,            //<! Key identifier for this event
-               _unmodified_key; //<! Virtual key identifier without any
+      uint32_t _key,            //!< Key identifier for this event
+               _unmodified_key; //!< Virtual key identifier without any
                                 //   modifiers applied
-      bool     _repeat;         //<! If key has been depressed long enough to
+      bool     _repeat;         //!< If key has been depressed long enough to
                                 //   generate key repetition
 
-      mutable std::string _name;        //<! Printable representation/name
-      mutable uint8_t _location; //<! Location of the key on the keyboard
+      mutable std::string _name; //!< Printable representation/name
+      mutable uint8_t _location; //!< Location of the key on the keyboard
 
   };