Changeset 783 for cpp/frams/genetics/genoconv.h
- Timestamp:
- 05/16/18 21:20:31 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/genetics/genoconv.h
r735 r783 20 20 { 21 21 GenoConvManager *gcm; 22 std::vector<std::string> gcnames; 22 std::vector<std::string> gcnames; //stores names of converters so that these names persist and pointers to these names can be safely used externally 23 23 char tmp_id[20]; 24 24 void freetab(); … … 45 45 char in_format, //< input format, eg. '1' 46 46 out_format; //< output format, eg. '0' 47 const char *info; //< detailed info about converter, format or copyright48 47 paInt enabled; //< don't touch this! (used by configuration module) 49 48 paInt mapsupport; //< set to 1 if your converter supports genotype mapping … … 57 56 virtual ~GenoConverter() {} 58 57 /// Don't forget to set public fields in your constructor 59 GenoConverter() :name(""), in_format(-1), out_format('0'), info(""),enabled(1), mapsupport(0) {}58 GenoConverter() :name(""), in_format(-1), out_format('0'), enabled(1), mapsupport(0) {} 60 59 }; 61 60
Note: See TracChangeset
for help on using the changeset viewer.