blob: 88730280ce957370d1427b7870a350e005bf4418 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 IBM Corporation 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:
* Hisashi MIYASHITA - initial API and implementation
*******************************************************************************/
package org.eclipse.actf.util.win32.comclutch;
/**
* @see RefContainer
*/
public class RefDouble extends RefContainer{
public RefDouble(ResourceManager rm){
super(rm, SIZEOF_DOUBLE);
}
public double getValue(){
return _getValueByDouble(getPtr());
}
public void setValue(double value){
_setValueForDouble(getPtr(), value);
}
}