next up previous contents
Next: The eyedbodl compiler Up: The Object Definition Language Previous: String Specification   Contents

Subsections


Code Inclusion


type_spec 		 : <quoted_seq>


attr_dcl : | <quoted_seq>


Examples


class Person {

attribute int age;
attribute char firstname[];

void perform(in string, out float);

%C++{
virtual int f(int a, float b);
static int list_count;
%}

%Java{
int f(int a, float b) {
return a+(int)b;
}
static int list_count = 3;
%}
};


EyeDB manual