blob: cbe9cc76eafa383842c840f5814e0f3a3d6276a0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2010 Nokia and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Nokia - Initial API and implementation
*******************************************************************************/
package org.eclipse.cdt.debug.edc.internal.symbols;
import java.util.Map;
import org.eclipse.cdt.debug.edc.symbols.IScope;
public class ReferenceType extends Type implements IReferenceType {
protected long runtimeOffset = 0;
public ReferenceType(String name, IScope scope, int byteSize, Map<Object, Object> properties) {
super(name, scope, byteSize, properties);
}
public long getRuntimeOffset() {
return runtimeOffset;
}
public void setRuntimeOffset(long runtimeOffset) {
this.runtimeOffset = runtimeOffset;
}
}