updated naming
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user