moved kdeaccessibility kdeaddons kdeadmin kdeartwork kdebindings kdeedu kdegames...
[kdeedu.git] / kstars / kstars / indi / apogee / ApnSerial_USB.cpp
blob6effe6093d7070f37a26ad0bc24f336985d5a8cb
1 // ApnSerial_USB.cpp: implementation of the CApnSerial_USB class.
2 //
3 //////////////////////////////////////////////////////////////////////
5 #include "stdafx.h"
6 #include "apogee.h"
7 #include "ApnSerial_USB.h"
9 #ifdef _DEBUG
10 #undef THIS_FILE
11 static char THIS_FILE[]=__FILE__;
12 #define new DEBUG_NEW
13 #endif
15 //////////////////////////////////////////////////////////////////////
16 // Construction/Destruction
17 //////////////////////////////////////////////////////////////////////
19 CApnSerial_USB::CApnSerial_USB()
24 CApnSerial_USB::~CApnSerial_USB()
29 bool CApnSerial_USB::InitPort( unsigned long CamIdA,
30 unsigned short CamIdB,
31 unsigned short SerialId )
33 return true;
36 bool CApnSerial_USB::ClosePort()
38 return true;
41 bool CApnSerial_USB::GetBaudRate( unsigned long *BaudRate )
43 return true;
46 bool CApnSerial_USB::SetBaudRate( unsigned long BaudRate )
48 return true;
51 bool CApnSerial_USB::GetFlowControl( Apn_SerialFlowControl *FlowControl )
53 return true;
56 bool CApnSerial_USB::SetFlowControl( Apn_SerialFlowControl FlowControl )
58 return true;
61 bool CApnSerial_USB::GetParity( Apn_SerialParity *Parity )
63 return true;
66 bool CApnSerial_USB::SetParity( Apn_SerialParity Parity )
68 return true;
71 bool CApnSerial_USB::Read( char *ReadBuffer, unsigned short *ReadCount )
73 return true;
76 bool CApnSerial_USB::Write( char *WriteBuffer, unsigned short WriteCount )
78 return true;