summaryrefslogtreecommitdiff
path: root/scripts/readvaluesfile.pl
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@lorry>2013-05-04 21:39:27 +0000
committerLorry Tar Creator <lorry-tar-importer@lorry>2013-05-04 21:39:27 +0000
commitfec6336699f34758d3e6cb41b2edf902fedb9035 (patch)
tree8256c1dbf3ca7c9e58a3dbecf07cf826fb2e0ce2 /scripts/readvaluesfile.pl
parent7dbffd7e2b0067e834801617c5c486e3177f6709 (diff)
downloadlibical-master.tar.gz
Diffstat (limited to 'scripts/readvaluesfile.pl')
-rw-r--r--scripts/readvaluesfile.pl6
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/readvaluesfile.pl b/scripts/readvaluesfile.pl
index cb40db8..b3eee98 100644
--- a/scripts/readvaluesfile.pl
+++ b/scripts/readvaluesfile.pl
@@ -110,8 +110,9 @@ sub read_parameters_file {
my $parameter_name = $column[0];
- my $data_type = $column[1];
- my $enum_string = $column[2];
+ my $enumConst = $column[1];
+ my $data_type = $column[2];
+ my $enum_string = $column[3];
my @enums;
if($enum_string){
@@ -119,6 +120,7 @@ sub read_parameters_file {
}
$h{$parameter_name} = { C => $data_type,
+ kindEnum => $enumConst,
enums => [@enums]
};
}