DNA-sequences / include / substitutie.h
substitutie.h
Raw
#ifndef SUBSTITUTIE_H  // voorkomt dat dit bestand meerdere keren
#define SUBSTITUTIE_H  // ge-include wordt

#include "variant.h"

#include <string>

class Substitutie: public Variant {
    public:
        // Default constructor
        Substitutie(int const start, int const eind, std::string const &seq);

        // Getter voor inserted/seq
        std::string get_inserted() const override;

        // Getter voor type
        std::string get_type() const override;
    private:
        // De sequentie die geïnsert moet worden
        std::string const seq;
};

#endif