aboutsummaryrefslogtreecommitdiff
path: root/tests/webidl/test.cpp
blob: 8a2b5c72fc03a159b6ce6980be956774c3f225ca (plain)
1
2
3
4
5
6
7
8
#include "test.h"

Parent::Parent(int val) : value(val) { printf("Parent:%d\n", val); }
Parent::Parent(Parent *p, Parent *q) : value(p->value + q->value) { printf("Parent:%d\n", value); }
void Parent::mulVal(int mul) { value *= mul; }

#include "glue.cpp"