Reduced minimum password retry level from 6 to 3
[barry/pauldeden.git] / src / modem.h
blobf76cc3a42ec8d0e7e9ecb967afb5c5fc795d70be
1 ///
2 /// \file modem.h
3 /// Modem API base class for the various serial/modem
4 /// modes available on the Blackberry.
5 ///
7 /*
8 Copyright (C) 2008, Net Direct Inc. (http://www.netdirect.ca/)
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
19 See the GNU General Public License in the COPYING file at the
20 root directory of this project for more details.
23 #ifndef __BARRY_MODEM_H__
24 #define __BARRY_MODEM_H__
26 #include "dll.h"
28 namespace Barry {
30 class Data;
32 class BXEXPORT Modem
34 public:
35 virtual ~Modem() {}
37 virtual void Open(const char *password = 0) = 0;
38 virtual void Close() = 0;
39 virtual void Write(const Data &data, int timeout = -1) = 0;
44 #endif