blob: 72d6a14c0893add2ed5be4f19f15785c87250602 [file] [log] [blame]
/*
*(c) Copyright QNX Software Systems Ltd. 2002.
* All Rights Reserved.
*
*/
package org.eclipse.cdt.debug.mi.core.command;
/**
*
* -var-show-format NAME
*
* Returns the format used to display the value of the object NAME.
*
* FORMAT ==>
* FORMAT-SPEC
*
*/
public class MIVarShowFormat extends MICommand
{
public MIVarShowFormat(String name) {
super("-var-show-format", new String[]{name});
}
}