/src/wrappers/glib/test/g_dates.e
http://github.com/tybor/Liberty · Specman e · 17 lines · 15 code · 2 blank · 0 comment · 2 complexity · a813d0be9f57275297c7a69cf525abc0 MD5 · raw file
- class G_DATES
- inherit
- G_LIST[G_DATE]
-
- creation make, copy
- feature {WRAPPER,WRAPPER_HANDLER} -- Implementation
- wrapper (a_pointer: POINTER): G_DATE is
- do
- if wrappers.fast_has(a_pointer) then
- Result ?= wrappers.at(a_pointer)
- end
- if Result = Void then
- Result := create {G_DATE}.from_external_pointer(a_pointer)
- end
- end
- end