Changeset 71 for cpp/gdk/geno.h


Ignore:
Timestamp:
02/05/11 00:53:44 (13 years ago)
Author:
sz
Message:

optional external validators for Geno

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/gdk/geno.h

    r66 r71  
    1010
    1111class MultiMap;
     12class Geno;
     13
     14class GenoValidator
     15{
     16  public:
     17virtual int testGenoValidity(Geno& g)=0;/// -1=no information  0=invalid  1=valid
     18};
    1219
    1320/// basic information about a single genotype.
     
    96103
    97104void* owner;
     105static SListTempl<GenoValidator*> validators;
    98106};
    99107
Note: See TracChangeset for help on using the changeset viewer.