ReleaseChecklist: added notes on how to access sourceforge shell
[barry.git] / src / m_mode_base.h
blob26c4be19dd93d152c04ff91d2b517d0c48836991
1 ///
2 /// \file m_mode_base.h
3 /// Base for mode classes
4 ///
6 /*
7 Copyright (C) 2005-2009, Net Direct Inc. (http://www.netdirect.ca/)
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU General Public License in the COPYING file at the
19 root directory of this project for more details.
22 #ifndef __BARRY_M_MODE_BASE_H__
23 #define __BARRY_M_MODE_BASE_H__
25 #include "dll.h"
26 #include "controller.h"
28 namespace Barry {
30 namespace Mode {
33 // Mode class
35 /// Base class for simple mode classes. Put common code here.
36 ///
37 class BXEXPORT Mode
39 protected:
40 Controller &m_con;
41 Controller::ModeType m_modetype;
42 SocketHandle m_socket;
44 uint16_t m_ModeSocket; // socket recommended by device
45 // when mode was selected
47 public:
48 Mode(Controller &con, Controller::ModeType type);
49 virtual ~Mode();
51 //////////////////////////////////
52 // primary operations - required before anything else
54 void Open(const char *password = 0);
55 void RetryPassword(const char *password);
56 // void Close();
58 protected:
59 //////////////////////////////////
60 // overrides
62 virtual void OnOpen();
65 }} // namespace Barry::Mode
67 #endif