00001 // ** LICENSE BLOCK ** 00002 // 00003 // AMValue.h 00004 // aria 00005 // 00006 // Created by Yohan Lasorsa on 06/08/09. 00007 // Copyright 2009 INRIA, Team WAM. All rights reserved. 00008 // 00009 00010 #import "a2ml.h" 00011 #import <Foundation/Foundation.h> 00012 00013 00017 @interface AMValue : NSObject <NSCopying> { 00018 // Internal variables 00019 double value; 00020 } 00021 00022 @property (nonatomic) double value; 00029 - (id)initWithValue:(double)_value; 00030 00036 - (double)calcValue; 00037 00038 @end