Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e8d67828763a03c55d13730cb941b5471006d2e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.eclipse.cdt.debug.mi.core.cdi;

import org.eclipse.cdt.debug.core.cdi.ICDIRegisterObject;

/**
 */
public class RegisterObject extends VariableObject implements ICDIRegisterObject {

	public RegisterObject(String name, int i) {
		super(name, null, i, 0);
	}

}

Back to the top