Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-dev] C Structure Members Autocomplete/Suggestions

Hi all,

In C we can define a structure like that:

typedef struct {
   int    x;
   int    y;
   int    z;
} point;

point tmpPoint;

If a developer write on eclipse tmpPoint. and then click CTRL+SPACE then eclipse will display the member list for point structure, I need to know how this is handled in Eclipse CDT, which files/functions are responsible for this autocompletion feature?

Best regards,
Amr

Back to the top