staruml / staruml-cpp

C++ extension for StarUML
MIT License
174 stars 67 forks source link

UMLEnumeration convertion failed #38

Open leo4048111 opened 1 year ago

leo4048111 commented 1 year ago

I tested the example code for UMLEnumeration convertion and the conversion result turned out to be empty. Code(Copied from readme):

/* Test header @ toori67
 * This is Test
 * also test
 * also test again
 */
#ifndef (_WEEKDAYS_H)
#define _WEEKDAYS_H

enum Weekdays { Monday,Tuesday,Saturday };

#endif //_WEEKDAYS_H

conversion result: image Any solution?