/src/wrappers/gobject/library/shared_eiffel_key.e

http://github.com/tybor/Liberty · Specman e · 18 lines · 10 code · 4 blank · 4 comment · 0 complexity · 5e3bbb0b63c208bc32dd195c786efcfd MD5 · raw file

  1. deferred class SHARED_EIFFEL_KEY
  2. inherit ANY undefine is_equal, copy end
  3. feature {} -- Implementation
  4. eiffel_key: G_QUARK is
  5. -- The quark used to store a pointer to Current into the
  6. -- underlying gobject.
  7. once
  8. create Result.from_string (eiffel_key_label)
  9. end
  10. eiffel_key_label: STRING is
  11. -- The key used to store a pointer to Current into the
  12. -- underlying gobject.
  13. "eiffel-wrapper"
  14. end