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

#include "variant.h"

#include <string>

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

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

#endif