You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
192 B
C++

#ifndef MODIFICATOR_H
#define MODIFICATOR_H
class Modificator
{
public:
explicit Modificator();
virtual ~Modificator();
virtual void run() const = 0;
};
#endif // MODIFICATOR_H