Beispiel #1
0
//
// Individual()
//
Individual::Individual(const std::string & id, int rowIndex, int tableIndex){
	
	_init();
	_id.set(id);
	_checkForSpecialIndividualTypes();
	_rowIndex   = rowIndex;
	_tableIndex = tableIndex;
	
}
Beispiel #2
0
//
// Individual()
//
Individual::Individual(const std::string &id, const std::string &motherId, const std::string &fatherId, const std::string &gender){
	
	_init();
	_id.set(id);
	_checkForSpecialIndividualTypes();
	_motherId.set(motherId);
	_fatherId.set(fatherId);
	_gender.set(gender);
	
}
Beispiel #3
0
//
// Individual()
//
Individual::Individual(const std::string &id,const std::string &motherId, const std::string &fatherId, const std::string &gender,int rowIndex,int tableIndex){
	
	_init();
	_id.set(id);
	_checkForSpecialIndividualTypes();
	_motherId.set(motherId);
	_fatherId.set(fatherId);
	_gender.set(gender);
	_rowIndex   = rowIndex;
	_tableIndex = tableIndex;
	
}
Beispiel #4
0
//
// Individual()
//
Individual::Individual(const std::string & id):_id(),_motherId(),_fatherId(),_gender(){ 
	
	_init();
	_id.set(id);
	_checkForSpecialIndividualTypes();
}
Beispiel #5
0
//
// Individual()
//
Individual::Individual(const std::string & id){ 
	
	_init();
	_id.set(id);
	_checkForSpecialIndividualTypes();
}