00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #import "a2ml.h"
00011 #import "AMValue.h"
00012 #import <Foundation/Foundation.h>
00013
00014
00018 @interface AMRandomValue : AMValue <NSCopying> {
00019
00020 double minValue;
00021 double maxValue;
00022 double interval;
00023 }
00024
00025 @property (nonatomic) double minValue;
00026 @property (nonatomic) double maxValue;
00027 @property (nonatomic) double interval;
00036 - (id)initWithMinValue:(double)_minValue maxValue:(double)_maxValue interval:(double)_interval;
00037
00044 - (id)initWithMinValue:(double)_minValue maxValue:(double)_maxValue;
00045
00051 - (double)calcValue;
00052
00053 @end