001/* 002 * To change this license header, choose License Headers in Project Properties. 003 * To change this template file, choose Tools | Templates 004 * and open the template in the editor. 005 */ 006package org.anarres.qemu.exec.vm.device; 007 008import org.anarres.qemu.exec.QEmuDeviceOption; 009 010/** 011 * 012 * @author shevek 013 */ 014public interface QEmuVgaDevice extends QEmuDevice { 015 016 public static class CirrusPci extends QEmuDeviceOption.Pci implements QEmuVgaDevice { 017 018 public CirrusPci() { 019 super("cirrus-vga"); 020 } 021 } 022}