001/* 002 * To change this template, choose Tools | Templates 003 * and open the template in the editor. 004 */ 005package org.anarres.qemu.qapi.common; 006 007/** 008 * 009 * @author shevek 010 */ 011public class QmpCapabilitiesCommand extends QApiCommand<Void, QmpCapabilitiesCommand.Response> { 012 013 public static class Response extends QApiResponse<Void> { 014 } 015 016 public QmpCapabilitiesCommand() { 017 super("qmp_capabilities", Response.class, null); 018 } 019}