aboutsummaryrefslogtreecommitdiff
path: root/oop2w3/C.cpp
blob: 6a0faddc315138e89b18306a512cdddf376753ae (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <iostream>

#include "C.h"

C::C() {
	std::cout << "C::C()" << std::endl;
}

void C::actie4() {
	std::cout << "C::actie4()" << std::endl;
}