forked from qt-creator/qt-creator
15 lines
159 B
C++
15 lines
159 B
C++
|
|
#include "testfile.h"
|
||
|
|
|
||
|
|
class SomeClass
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
SomeClass() {}
|
||
|
|
void function1(int a);
|
||
|
|
};
|
||
|
|
|
||
|
|
bool function1(int a) {
|
||
|
|
SOME_MACRO_NAME(a)
|
||
|
|
return a;
|
||
|
|
}
|
||
|
|
|