#ifndef TIMERACTIONS_HPP #define TIMERACTIONS_HPP #include "timer.hpp" #include #include #include #include #include #include #include class swapaction : public timeraction { public: size_t it_i = 0; bool iscomplete = false; std::vector &input_vector; swapaction(std::vector &input_vector); void update(const timer &t); }; class sortaction : public timeraction { public: size_t it_i = 0; size_t it_j = 0; bool iscomplete = false; std::vector &input_vector; sortaction(std::vector &input_vector); void update(const timer &t); }; #endif