1 #ifndef _PEN_INPUT_BACKEND_H 2 #define _PEN_INPUT_BACKEND_H 3 4 #include <Handler.h> 5 6 7 class PenInputBackend : public BHandler { 8 protected: 9 PenInputBackend(const char *name); 10 virtual ~PenInputBackend(); 11 12 public: 13 status_t InitCheck() const { return fInitStatus; }; 14 15 private: 16 status_t fInitStatus; 17 }; 18 19 #endif /* _PEN_INPUT_BACKEND_H */ 20