Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 852bd3fac7ebd6744ff9ed37a1568dce8d18ae2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[module CppEnumerations('http://www.eclipse.org/uml2/4.0.0/UML', 'http://www.eclipse.org/papyrus/C_Cpp/1')/]
[import org::eclipse::papyrus::acceleo::GenUtils/]
[import org::eclipse::papyrus::cpp::codegen::acceleo::util::CppDocumentation/]

[template public CppEnumerationDefinition(enum : Enumeration)]
[CppElementDoc()/]
enum [enum.name/] {
[for (ownedLiteral)]
	[CppElementDoc()/]
	[name/][if hasStereotype(CppInit)] = [getApplication(CppInit).oclAsType(CppInit).value/][/if],
[/for]
};

[/template]

Back to the top