bio-cpp/GeneRoddenberry/Gene.h
2023-05-05 11:41:42 +02:00

25 lines
372 B
C++

//
// Created by ahypki on 05.05.23.
//
#include <string>
using namespace std;
#ifndef GENERODDENBERRY_GENE_H
#define GENERODDENBERRY_GENE_H
namespace ahypki {
class Gene {
private:
string nameOfGene = "NULL";
public:
string getNameOfGene();
void setNameOfGene(string newName);
};
} // ahypki
#endif //GENERODDENBERRY_GENE_H