Defining the IDL Interface
//IDL
// In file grid.idl
interface Grid {
readonly attribute short height;
readonly aatribute short width;
void set (in short row, in short col, in long value);
long get (in short row, in short col);
};
Previous slide
Next slide
Back to first slide
View graphic version