forked from qt-creator/qt-creator
20 lines
102 B
C++
20 lines
102 B
C++
|
|
#if 0
|
||
|
|
|
||
|
|
void f();
|
||
|
|
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#ifndef BLAH
|
||
|
|
class Class
|
||
|
|
{
|
||
|
|
|
||
|
|
};
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#ifdef BLAH
|
||
|
|
class Class
|
||
|
|
{
|
||
|
|
|
||
|
|
};
|
||
|
|
#endif
|