We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 779c068 commit fbc937cCopy full SHA for fbc937c
test/header.h
@@ -0,0 +1,7 @@
1
+class C {
2
+
3
+ public:
4
+ C() { bar(); }
5
+ void bar();
6
7
+};
test/test1.cpp
@@ -0,0 +1,23 @@
+#include "header.h"
+namespace AliceO2 {
+ class A {
+ double mGood;
+ double fBad;
8
9
+ void interface1();
10
+ void interface2();
11
+ };
12
13
+ class B {
14
15
+ void foo();
16
17
18
+ void consumer(A &a, B &b, C &c){
19
+ a.interface1();
20
+ b.foo();
21
+ c.bar();
22
+ }
23
+}
0 commit comments