View difference between Paste ID: bBCeYKpZ and iGshc6A4
SHOW: | | - or go back to the newest paste.
1
#include "myclass.h"
2
3
class myclass;
4-
	coords(myclass) {
4+
5
	coords(myclass*) {
6
		doSomeStuff();
7
	}
8
}
9
10
11
12
13
14
15
#include "coords.h"
16
class myclass {
17
	myclass(coords) {
18
		doanotherStuff();
19
	}
20
}