Общая библиотека для работы с торговым оборудованием.  1.0.0
teconnectserial.h
1 /****************************************************************************
2 ** $Id: teconnectserial.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  Abstract trade equipment data provider object
27 */
28 #ifndef TECONNECTSERIAL_H
29 #define TECONNECTSERIAL_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 <tserialport.h>
38 #include <cmdparser.h>
39 
40 //---------------------------------------------------------------------------
41 class LIB_EXPORT TEConnectSerial : public TEConnect
42 {
43  Q_OBJECT
44 
45 public:
46 
47  TEConnectSerial( int pn );
48  ~TEConnectSerial();
49 };
50 //---------------------------------------------------------------------------
51 
52 #endif
The TEConnectSerial is base class to connect with trade equipment.
Definition: teconnectserial.h:41
The TEConnect is base class to connect with trade equipment.
Definition: teconnect.h:40