sipXcallLib home page


PsKeybdDevWnt.h
Go to the documentation of this file.
1 //
2 // Copyright (C) 2004-2006 SIPfoundry Inc.
3 // Licensed by SIPfoundry under the LGPL license.
4 //
5 // Copyright (C) 2004-2006 Pingtel Corp. All rights reserved.
6 // Licensed to SIPfoundry under a Contributor Agreement.
7 //
8 // $$
10 
11 #ifndef _PsKeybdDevWnt_h_
12 #define _PsKeybdDevWnt_h_
13 
14 // SYSTEM INCLUDES
15 
16 // APPLICATION INCLUDES
17 #include "os/OsDefs.h"
18 #include "ps/PsButtonTask.h"
19 
20 // DEFINES
21 // MACROS
22 // EXTERNAL FUNCTIONS
23 // EXTERNAL VARIABLES
24 // CONSTANTS
25 // STRUCTS
26 // TYPEDEFS
27 
28 // FORWARD DECLARATIONS
29 
30 //:Phone set keyboard device support on the Wnt platform
31 class PsKeybdDevWnt : public PsKeybdDev
32 {
33 /* //////////////////////////// PUBLIC //////////////////////////////////// */
34 public:
35 
36 /* ============================ CREATORS ================================== */
37 
39  : PsKeybdDev(pButtonTask) { };
40  //:Constructor
41  // Initialize the keyboard device
42 
43  virtual
45  //:Destructor
46 
47 /* ============================ MANIPULATORS ============================== */
48 
49  virtual void disableIntr(void) { };
50  //:Disable keyboard interrupts
51 
52  virtual void enableIntr(void) { };
53  //:Enable keyboard interrupts
54 
55 /* ============================ ACCESSORS ================================= */
56 
57 /* ============================ INQUIRY =================================== */
58 
59 /* //////////////////////////// PROTECTED ///////////////////////////////// */
60 protected:
61 
62 /* //////////////////////////// PRIVATE /////////////////////////////////// */
63 private:
64 
65  PsKeybdDevWnt(const PsKeybdDevWnt& rPsKeybdDevWnt);
66  //:Copy constructor (not implemented for this class)
67 
69  //:Assignment operator (not implemented for this class)
70 
71 };
72 
73 /* ============================ INLINE METHODS ============================ */
74 
75 #endif // _PsKeybdDevWnt_h_
PsKeybdDevWnt & operator=(const PsKeybdDevWnt &rhs)
Definition: PsButtonTask.h:40
virtual void enableIntr(void)
Definition: PsKeybdDevWnt.h:52
Definition: PsKeybdDevWnt.h:31
Definition: PsKeybdDev.h:33
virtual void disableIntr(void)
Definition: PsKeybdDevWnt.h:49
virtual ~PsKeybdDevWnt()
Definition: PsKeybdDevWnt.h:44
PsKeybdDevWnt(PsButtonTask *pButtonTask)
Definition: PsKeybdDevWnt.h:38