blob: 758308481dcbf1d002ae69b31c7b7d73ad7869eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
class myClass
{
public:
myClass() {};
~myClass() {};
void performUnblocking( short int cell_index );
void performBlocking( int cell_index );
};
void myClass::performUnblocking( short int cell_index ) {}
void myClass::performBlocking( int cell_index ) {}
int main ()
{
myClass mc;
mc.performBlocking (0);
mc.performUnblocking (0);
}
|