Общая библиотека для работы с торговым оборудованием.  1.0.0
teconnecttcp.h
1 /****************************************************************************
2 ** $Id: teconnecttcp.h,v 1.1 2006/07/12 09:12:32 leader Exp $
3 **
4 ** Trade equipment common portable library project
5 **
6 ** Copyright (C) 1999-2006 Leader InfoTech. All rights reserved.
7 **
8 ** This file is part of the Library of the Ananas
9 ** automation accounting system.
10 **
11 ** This file may be distributed and/or modified under the terms of the
12 ** GNU General Public License version 2 as published by the Free Software
13 ** Foundation and appearing in the file LICENSE.GPL included in the
14 ** packaging of this file.
15 **
16 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
17 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
18 **
19 ** See http://www.leaderit.ru/ or email sales@leaderit.ru
20 **
21 ** Contact org@leaderit.ru if any conditions of this licensing are
22 ** not clear to you.
23 **
24 **********************************************************************/
25 /*
26  TCP trade equipment data connection object
27 */
28 #ifndef TECONNECTTCP_H
29 #define TECONNECTTCP_H
30 
31 #include <teglobal.h>
32 #include <teconnect.h>
33 #include <templexports.h>
34 
35 //#include <qobject.h>
36 #include <qdict.h>
37 #include <cmdparser.h>
38 
39 //---------------------------------------------------------------------------
40 class LIB_EXPORT TEConnectTCP : public TEConnect
41 {
42  Q_OBJECT
43 
44 public:
45 
46  TEConnectTCP( int pn );
47  ~TEConnectTCP();
48 };
49 //---------------------------------------------------------------------------
50 
51 #endif
The TEConnectTCP is TCP/IP connection class to connect with trade equipment.
Definition: teconnecttcp.h:40
The TEConnect is base class to connect with trade equipment.
Definition: teconnect.h:40