I have a typically declared class:
class Task { public: int test(int &c); }; int Task::test(int &c) { c += 8; return c; }