Ignore:
Timestamp:
07/20/16 01:17:14 (8 years ago)
Author:
Maciej Komosinski
Message:

Renamed: get/setGene -> get/setGenes, setGeneOnly -> setGenesAssumingSameFormat

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/genetics/geno.cpp

    r530 r534  
    3232        name = genname;
    3333        txt = comment;
    34         setGeneAndFormat(genstring,genformat);
    35 }
    36 
    37 void Geno::setGeneAndFormat(const SString& genstring, char genformat)
     34        setGenesAndFormat(genstring,genformat);
     35}
     36
     37void Geno::setGenesAndFormat(const SString& genstring, char genformat)
    3838{
    3939        mapinshift = 0;
     
    151151}
    152152
    153 void Geno::setGeneOnly(const SString& g)
     153void Geno::setGenesAssumingSameFormat(const SString& g)
    154154{
    155155        gen = g;
     
    174174}
    175175
    176 SString Geno::getGeneAndFormat(void) const
     176SString Geno::getGenesAndFormat(void) const
    177177{
    178178        SString out;
     
    211211}
    212212
    213 SString Geno::getGene(void) const { return gen; }
     213SString Geno::getGenes(void) const { return gen; }
    214214SString Geno::getName(void) const { return name; }
    215215char Geno::getFormat(void) const { return format; }
Note: See TracChangeset for help on using the changeset viewer.