view test/bug-50716/myclass.m @ 31185:a1145ac2ce9b

Tiff: populated TagID from the C++ map to avoid having two copies * __tiff__.cc (F__tiff_make_tagid__): implemented internal function as initializer for TagID. * Tiff.m: changed the initialization for TagID to use the internal function.
author magedrifaat <magedrifaat@gmail.com>
date Thu, 18 Aug 2022 17:23:43 +0200
parents 957d95286f52
children
line wrap: on
line source

classdef myclass < handle

  methods
    function obj = myclass
    endfunction

    function r = methodA (obj, val)
      r = val;
    endfunction

  endmethods

endclassdef