blob: 8a5b1e691e88c52133a3ad447930b41577ccda7b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 QNX Software Systems and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* QNX Software Systems - Initial API and implementation
*******************************************************************************/
package org.eclipse.ptp.debug.external.cdi.model.type;
import org.eclipse.cdt.debug.core.cdi.model.type.ICDIVoidType;
import org.eclipse.ptp.debug.external.cdi.model.Target;
/**
*/
public class VoidType extends Type implements ICDIVoidType {
public VoidType(Target target) {
this(target, "void"); //$NON-NLS-1$
}
public VoidType(Target target, String typename) {
super(target, typename);
}
}