src/SpacenavWrapper.h
branchv_0
changeset 9 d3716f03efcd
parent 6 49560660d230
child 11 aaa89fe98b63
equal deleted inserted replaced
8:f351c261cbfd 9:d3716f03efcd
    58 		MotionEvent motion;
    58 		MotionEvent motion;
    59 		ButtonEvent button;
    59 		ButtonEvent button;
    60 
    60 
    61 	};
    61 	};
    62 
    62 
       
    63 	enum class ConnectionStatus {
       
    64 		NONE,
       
    65 		DOMAIN_SOCKET,
       
    66 		X11
       
    67 	};
       
    68 
    63 	SpacenavWrapper();
    69 	SpacenavWrapper();
    64 
    70 
    65 	virtual ~SpacenavWrapper();
    71 	virtual ~SpacenavWrapper();
    66 
    72 
       
    73 	ConnectionStatus getConnectionStatus();
    67 	Event waitEvent();
    74 	Event waitEvent();
    68 
    75 
    69 
    76 private:
       
    77 	ConnectionStatus connectionStatus;
    70 };
    78 };