budget/src/optHandlers/operation.h

19 lines
243 B
C
Raw Normal View History

//
// Created by quentin on 1/17/23.
//
#ifndef BUDGET_OPERATION_H
#define BUDGET_OPERATION_H
namespace Budget::OptHandlers {
class Operation {
public:
virtual void commit() = 0;
struct Flags {
};
};
}
#endif //BUDGET_OPERATION_H