Sync usage with man page.
[netbsd-mini2440.git] / gnu / dist / gdb6 / gdb / testsuite / gdb.cp / pr-1023.cc
blob758308481dcbf1d002ae69b31c7b7d73ad7869eb
1 class myClass
3 public:
4 myClass() {};
5 ~myClass() {};
6 void performUnblocking( short int cell_index );
7 void performBlocking( int cell_index );
8 };
10 void myClass::performUnblocking( short int cell_index ) {}
12 void myClass::performBlocking( int cell_index ) {}
14 int main ()
16 myClass mc;
17 mc.performBlocking (0);
18 mc.performUnblocking (0);