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

#include "variant.h"

#include <string>

// dit in een aparte h file zetten
class Deletie: public Variant {
    public:
        // Default constructor
        Deletie(int const start, int const eind);

        // Getter voor type
        std::string get_type() const override;
};

#endif