#ifndef CLOCK_ICE #define CLOCK_ICE module Demo { struct Structure { int index; string name; }; interface Clock { void tick(string time); void tick2(Structure ct); }; }; #endif