budget/src/optHandlers/operation.h

20 lines
246 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;
2023-01-17 13:47:36 -06:00
struct Flags {
};
};
}
#endif //BUDGET_OPERATION_H