umbrello  2.39.2
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
comments-class-operators.h
Go to the documentation of this file.
1 
2 // class comments_class_operators_test
4 public:
5  /* operator * c style single line comment */
6  int operator * (int i);
7 
9  int operator / (int i);
10 
11  /*
12  * operator % comment
13  * c-style multiline comment
14  */
15  int operator % (int i);
16 
21  int operator | (int i);
22 
23  // operator && description c++ style single line comment
24  int operator && (int i);
25 
27  int operator || (int i);
28 
29  // operator + description line 1 out of 3 (c++ style)
30  // operator + description line 2 out of 3 (c++ style)
31  // operator + description line 3 out of 3 (c++ style)
32  int operator + (int i);
33 
36  int operator - (int i);
37 };
Definition: comments-class-operators.h:3
int operator||(int i)
operator || c++ doxygen style single line comment