Changes between Version 4 and Version 5 of Documentation/Tutorial/PingPong
- Timestamp:
- Jan 20, 2009, 4:47:59 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Documentation/Tutorial/PingPong
v4 v5 43 43 26 } 44 44 }}} 45 The ''main.cpp'' serves us as an entry point to the application. 45 The ''main.cpp'' serves us as an entry point to the application. In the first lines we include class definitions we need here (e.g. strings because we want to handle some). Also, we include the StartupWrapper class that comes with ''Ariba''. It provides some handy helpers for initialization. Finally, we need to include the PingPong.h, because this is the actual thing we want to execute. 46 Then, we declare the used namespaces (lines 05-07) to be able to use the functionalities. 46 47 47 48