#ifndef INSERTIE_H // voorkomt dat dit bestand meerdere keren #define INSERTIE_H // ge-include wordt #include "variant.h" #include <string> class Insertie: public Variant { public: // Default constructor Insertie(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