aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cppeditor/testcases/move-class/header-only/theclass.h_expected
blob: 9b1f655f3f178eda105c74e3544b9a044a05ce7b (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef THECLASS_H
#define THECLASS_H

class TheClass {
    void func();
};

void TheClass::func() {}

#endif // THECLASS_H