Nested C class setters restored in c++out mode for Octave

Suitable casts are required so that assignment of instances of nested classes
work as the nested class is duplicated in the global namespace, eg:

struct Outer {
  struct Nested {
    int bar;
  } bar_instance;
};

Outer.bar_instance can now be assigned to.
This commit is contained in:
William S Fulton 2013-12-12 07:59:47 +00:00
commit e95ac82651
5 changed files with 41 additions and 6 deletions

View file

@ -23,6 +23,8 @@ void setValues(struct Outer *outer, int val) {
outer->inside3 = &outer->inside2;
outer->inside4[0].val = val * 4;
}
int getInside1Val(struct Outer *n) { return n->inside1.val; }
%}
/*