Hello everyone!
I import my source via the import function of the EA.
Two weeks ago i still used the EA version 10.
Last week i installed the EA version 12.
Since i installed the version 12 i got problems when i import my source code.
The version 12 does not import "all source parts".
I have a structure with enumeration variables.
struct t_TestStructure
{
TypeLS eType;
ColorLS eColor;
ThicknessLS eThickness;
};
Enumeration types:
typedef enum TypeLS
{
eTypeIndependent = 0,
eType1 = 100,
eType2 = 200,
eType3 = 300,
eType4 = 400,
eType5 = 500,
eType6 = 600
};
typedef enum ThicknessLS
{
eThicknessIndependet = 0,
eThicknessThin = 1,
eThicknessMedium = 2,
eThicknessThick = 3
};
typedef enum ColorLS
{
eColorIndependet = 0,
erColorLight = 10,
erColorMedium = 20,
erColorDark = 30
};
typedef enum ThicknessLS
{
eThicknessIndependet = 0,
eThicknessThin = 1,
eThicknessMedium = 2,
erThicknessThick = 3
};
In version 10 the structure and the enumerations are shown in the class diagram.
But when i import the same file with the version 12 only the structure is shown in the class diagram without the enumerations.
Does anybody have an explanation for this scenario.
Do i have to change some import settings or other settings?
Best regards
Thomas