| 1 | namespace ns1 { |
|---|---|
| 2 | extern void DoSomeStuff(); |
| 3 | } |
| 4 | |
| 5 | namespace ns2 { |
| 6 | extern void DoSomeStuff(); |
| 7 | } |
| 8 | |
| 9 | namespace ns3 { |
| 10 | extern void DoSomeStuff(); |
| 11 | } |
| 12 | |
| 13 | namespace ns4 { |
| 14 | extern void DoSomeStuff(); |
| 15 | } |
| 16 | |
| 17 | int main(int argc, char *argv[]) { |
| 18 | ns1::DoSomeStuff(); |
| 19 | ns2::DoSomeStuff(); |
| 20 | ns3::DoSomeStuff(); |
| 21 | ns4::DoSomeStuff(); |
| 22 | |
| 23 | return 0; |
| 24 | } |
| 25 |
