Update of /cvsroot/ccmtools/ccmtools/test/IDLParser/events
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/IDLParser/events
Added Files:
EventtypeTest.idl
Log Message:
Refactored test directory
--- NEW FILE: EventtypeTest.idl ---
#ifndef __EVENTTYPE_TEST__IDL__
#define __EVENTTYPE_TEST__IDL__
eventtype Login
{
public long id;
public string name;
private string password;
boolean hasAccess();
};
eventtype NewLogin : Login
{
public double time;
void login();
};
abstract eventtype EventBase
{
};
#endif // __EVENTTYPE_TEST__IDL__
|