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 - Javi

Pages: [1]
1
Are the functions private? From memory only public functions go into the header.

Hi Eve,

I have tried with public functions Visibility = Public ( they have the plus icon next to the function) and the header files is still empty, what more can I try/do?

2
Are the functions private? From memory only public functions go into the header.

Hello EVe thanks for replying,

Yes they are set as private, I will try setting them public

Thanks


3
General Board / Re: Refactor operations of a class
« on: February 19, 2021, 09:38:12 pm »
You can write a little script to do that for you.

Geert

So it is not natively supported...

Could you point me out where I can find documentation to do so?

Thanks!

4
General Board / Refactor operations of a class
« on: February 17, 2021, 07:30:58 pm »
Hello,

I was wondering whether there is a way to refactor the naming of all operations of a class and its class types.

I mean if I have a class that has got these methods

  • sum()
  • substract()


I would like to refactor all of them at once as

  • myPrefix_sum()
  • myPRefix_substract()

IS this possible in Enterprise architect?

5
General Board / Enterprise Architect 15.1 not generating headers (.h) for C
« on: February 17, 2021, 07:10:00 pm »
Hello,

I have been using EA for a month or so, so my level with the tool is still as newbie...

I have designed certain class diagrams with their respective methods/functions, my next step was to generate the associated code for those functions and here is where the issue starts.

I have noticed that the .c is properly created, functions declarations are correctly generated, however the header file .h doesn't contain anything except some ifdef as depicted below. Why are the headers not included and how can I make them to appear?

Code: [Select]
#if !defined(EA_F904FF56_7FDF_4298_A9F7_EF93EF64426F__INCLUDED_)
#define EA_F904FF56_7FDF_4298_A9F7_EF93EF64426F__INCLUDED_


#ifdef __cplusplus
extern "C" {
#endif



#ifdef __cplusplus
}
#endif


#endif /*!defined(EA_F904FF56_7FDF_4298_A9F7_EF93EF64426F__INCLUDED_)*/
 

Thanks in advance!

Pages: [1]