| 1 | /*************************************************************************** |
| 2 | oh323tut.h |
| 3 | |
| 4 | Copyright (c) 2002-2003 Vladimir Toncar |
| 5 | |
| 6 | The contents of this file are subject to the Mozilla Public License |
| 7 | Version 1.1 (the "License"); you may not use this file except in |
| 8 | compliance with the License. You may obtain a copy of the License at |
| 9 | http://www.mozilla.org/MPL/ |
| 10 | |
| 11 | Software distributed under the License is distributed on an "AS IS" |
| 12 | basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing rights and |
| 14 | limitations under the License. |
| 15 | |
| 16 | The Original Code is oh323tut. |
| 17 | |
| 18 | The Initial Developer of the Original Code is Vladimir Toncar. |
| 19 | All Rights Reserved. |
| 20 | |
| 21 | Contributor(s): ______________________________________. |
| 22 | |
| 23 | ***************************************************************************/ |
| 24 | |
| 25 | #ifndef _OH323TUT_H |
| 26 | #define _OH323TUT_H |
| 27 | |
| 28 | #include <ptlib.h> |
| 29 | #include <ptlib/pprocess.h> |
| 30 | |
| 31 | |
| 32 | // *********************************************************************** |
| 33 | |
| 34 | class OH323Tut: public PProcess |
| 35 | { |
| 36 | PCLASSINFO(OH323Tut, PProcess) |
| 37 | public: |
| 38 | OH323Tut(); |
| 39 | virtual ~OH323Tut(); |
| 40 | |
| 41 | virtual void Main(); |
| 42 | void printHelp(); |
| 43 | }; |
| 44 | |
| 45 | |
| 46 | #endif |