Book a Demo

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - hellstern

Pages: [1]
1
General Board / Re: Problems with reverse engineering C++
« on: May 14, 2004, 04:35:20 am »
Hi,

I've got the same problem, too, working with EA 3.51 build 609.
I created a small test-class CTest with constructor CTest(), destructor ~CTest() and an operator like this:

.h
CTest& operator=(const Test& test);

.cpp
CTest& CTest::operator=(const CTest& test){
       mTestMember1 = test.mTestMember1;
}

I used EA for building up the class and the above code is the result of code engineering.
After reverse engineering the same (unchanged) code the operator= isn't correct anymore:
1. Return type is missing!
2. Operation name is now "operator =" (with a blank before '=').

Now I generate code again without change in EA file and get this:

.h
operator =(const CTest& test);

Does anybody know something about this?

2
General Board / Cant't close 'batch generation'-window
« on: May 14, 2004, 05:04:18 am »
Hi,

after starting code generation of a package which includes some read-only files (they're under version control!) I can't close the batch generation window anymore. I have to exit EA and start again.
So, I know it's my fault, that I want to generate code for files I'm not allowed to write on but I'd like to continue work without starting EA again...

Thanks for your help!

Pages: [1]