aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rpcs16.h
blob: cc4d601d9212594a1170a2afd2739e826ca4a481 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef _rpcs16_h_
#define _rpcs16_h_

#include "rpcs.h"

class ppsocket;
class bufferStore;
class rpcsfactory;

/**
 * This is the implementation of the @ref rpcs protocol for
 * Psion series 3 (SIBO) variant.  You normally never create
 * objects of this class directly. Thus the constructor is
 * private. Use @ref rpcsfactory for creating an instance of
 * @ref rpcs . For a complete documentation, see @ref rpcs .
 */
class rpcs16 : public rpcs {
	friend rpcsfactory;

 public:
	~rpcs16();
	
	Enum<rfsv::errs> queryDrive(const char, bufferArray &);
	Enum<rfsv::errs> getCmdLine(const char *, bufferStore &); 
 private:
	rpcs16(ppsocket *);
};

#endif