1
0
Fork 0
This repository has been archived on 2021-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
uni-m.cds-adv-prog/ex3.4/Counter.cc

10 lines
113 B
C++
Raw Normal View History

2019-12-12 17:12:47 +01:00
// Counter.cc
#include "Counter.hh"
int Counter::getCounter() {
return counter;
}
int Counter::counter = 0 ;