12 lines
92 B
OpenEdge ABL
12 lines
92 B
OpenEdge ABL
%module xxx
|
|
|
|
class Foo {
|
|
};
|
|
|
|
class Bar : private Foo {
|
|
};
|
|
|
|
class Spam : protected Foo {
|
|
};
|
|
|