updated naming

This commit is contained in:
2026-07-17 12:06:22 +02:00
parent 8ff0e89bb1
commit ccd216591a
5 changed files with 80 additions and 94 deletions
+8 -8
View File
@@ -10,23 +10,23 @@
#include <string>
#include <vector>
class swapaction : public timeraction {
class SwapAction : public TimerAction {
public:
size_t it_i = 0;
bool iscomplete = false;
bool is_complete = false;
std::vector<int> &input_vector;
swapaction(std::vector<int> &input_vector);
void update(const timer &t);
SwapAction(std::vector<int> &input_vector);
void update(const Timer &t);
};
class sortaction : public timeraction {
class SortAction : public TimerAction {
public:
size_t it_i = 0;
size_t it_j = 0;
bool iscomplete = false;
bool is_complete = false;
std::vector<int> &input_vector;
sortaction(std::vector<int> &input_vector);
void update(const timer &t);
SortAction(std::vector<int> &input_vector);
void update(const Timer &t);
};
#endif