octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #45444] Private functions inside namespace and


From: Amro
Subject: [Octave-bug-tracker] [bug #45444] Private functions inside namespace and class directories
Date: Tue, 30 Jun 2015 16:42:11 +0000
User-agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:40.0) Gecko/20100101 Firefox/40.0

Follow-up Comment #2, bug #45444 (project octave):

Carnë:
I was talking about the new classdef-style OOP:


$ cat ./testdir/@foo/foo.m
classdef foo
    methods
        function obj = foo()
            disp ("Calling foo constructor");
            baz();
        end
    end
end

$ cat ./testdir/@foo/private/baz.m
function baz()
    disp ("baz was called");
end



    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?45444>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]