aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cppeditor/testcases/move-class/complex/theclass.cpp_expected
blob: 5cb8bbb37533e88c66527fb0b32fc8a8f42bd4bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

#include "theclass.h"

namespace Project {
namespace Internal {

bool TheClass::needsDefinition = true;

class TheClass::Private
{
    void func();
    int m_member = 0;
};

void TheClass::defined() {}

void TheClass::Private::func() {}

} // namespace Internal
} // namespace Project