File tree 2 files changed +0
-11
lines changed
2 files changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -291,7 +291,6 @@ public slots:
291
291
/* *
292
292
* Signal emitted by Qt combox provide int argument
293
293
* this slot will convert it to t_amplitude_modes
294
- * @param p_amplitude_mode
295
294
*/
296
295
inline
297
296
void setAmplitudeModeInt (int p_amplitude_mode);
Original file line number Diff line number Diff line change @@ -60,8 +60,6 @@ class RingBuffer
60
60
61
61
/* *
62
62
* ignore - read past num elements without returning them
63
- * @param p_num
64
- * @return
65
63
*/
66
64
int ignore (int p_num);
67
65
@@ -81,22 +79,17 @@ class RingBuffer
81
79
82
80
/* *
83
81
* always put item, may lose the oldest item from the buffer
84
- * @param p_item
85
82
*/
86
83
void force_put (const T & p_item);
87
84
88
85
/* *
89
86
* always put items, may lose some older items from the buffer
90
- * @param p_items
91
- * @param num
92
87
*/
93
88
void force_put ( const T * p_items
94
89
, int num
95
90
);
96
91
/* *
97
92
* retrieves 1 item without removing it
98
- * @param p_item
99
- * @return
100
93
*/
101
94
bool peek (T * p_item);
102
95
@@ -112,9 +105,6 @@ class RingBuffer
112
105
113
106
/* *
114
107
* returns the number of items returned, max of num items
115
- * @param p_items
116
- * @param p_num
117
- * @return
118
108
*/
119
109
int get ( T * p_items
120
110
, int p_num
You can’t perform that action at this time.
0 commit comments