Files
qt-creator/tests/system/suite_editors/shared/simplePlainCPP/testfile.cpp

15 lines
159 B
C++
Raw Normal View History

#include "testfile.h"
class SomeClass
{
public:
SomeClass() {}
void function1(int a);
};
bool function1(int a) {
SOME_MACRO_NAME(a)
return a;
}