Skip to main content
summaryrefslogtreecommitdiffstats
blob: 86253e4b8a7c691dc56b95503af604b2ca8b75d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * (c) Copyright QNX Software Systems Ltd. 2002.
 * All Rights Reserved.
 */

package org.eclipse.cdt.debug.mi.core.cdi.model.type;

import org.eclipse.cdt.debug.core.cdi.model.type.ICDILongValue;
import org.eclipse.cdt.debug.mi.core.cdi.model.Variable;

/**
 */
public class LongValue extends IntegralValue implements ICDILongValue {

	/**
	 * @param v
	 */
	public LongValue(Variable v) {
		super(v);
	}

}

Back to the top