Book a Demo

Author Topic: Reverse code engeneering those not work  (Read 3075 times)

oehrened

  • EA Novice
  • *
  • Posts: 4
  • Karma: +0/-0
  • I love YaBB 1G - SP1!
    • View Profile
Reverse code engeneering those not work
« on: July 17, 2015, 06:46:37 pm »
I have a simple structure in a header file
struct Image_info
{
      int  camera_number;
      char *camera_type;
      char *time_stamp;
} ;

if I change
   int  camera_number;
to
   char camera_number;

EA does not synch the source to the model.
Also if I add attributes it does not include them into the model.
Any ideas why?

Thanks for helping!

Eve

  • EA Administrator
  • EA Guru
  • *****
  • Posts: 8110
  • Karma: +119/-20
    • View Profile
Re: Reverse code engeneering those not work
« Reply #1 on: July 20, 2015, 08:14:43 am »
Just tried importing that as both C and C++. Each time I made a change and selected synch in EA, the changes were brought in. (Except when I broke the ownership for the c struct and the class representing the file. In that case it created a new struct in the model)