E2003 Data member definition not allowed in __automated section (C++)
Go Up to Compiler Errors And Warnings (C++) Index
Only member function declarations are allowed in __automated sections.
Example:
struct__declspec(delphiclass) clxclass
{
__automated:
int__fastcall fooInt(int);// OK
intmemInt;// Error
};