001/* 002 * To change this template, choose Tools | Templates 003 * and open the template in the editor. 004 */ 005package org.anarres.qemu.exec.host.chardev; 006 007/** 008 * 009 * @author shevek 010 */ 011public class MsmouseCharDevice extends AbstractCharDevice { 012 013 public MsmouseCharDevice() { 014 super("msmouse"); 015 } 016 017 @Override 018 public String toString() { 019 return "msmouse"; 020 } 021}