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.examples;
007
008import javax.annotation.Nonnull;
009
010/**
011 *
012 * @author shevek
013 */
014public interface QEmuExample {
015
016    public void invoke(@Nonnull String[] args) throws Exception;
017}