The IPD File Format
The ViennaIPD file format supports structures of highly intricate nature. A small glimpse on its capabilities is provided in this section.
The ViennaIPD file format
// values of different types can be created
a = "A short text.";
b = 2.2;
ext c = 2; // can be overwritten by application
d = b * c;
// a section of arbitrary name canbe created
Double
{ // a section can have members
ext a = 1;
d = 2 * a;
}
// a section can be derived from another section
Threefold : Double
{
d = 3 * a;
}
// section can have nested sections
Tree
{
Branch1
{
Lear1 = 1;
Lear2 = 2;
}
Branch2
{
Lear3 = 3;
Lear4 = 4;
}
Lear5 = 5;
Lear6 = 6;
}


