18 lines
226 B
C
18 lines
226 B
C
|
//
|
||
|
// Created by quentin on 1/21/23.
|
||
|
//
|
||
|
|
||
|
#ifndef BUDGET_UTILITIES_H
|
||
|
#define BUDGET_UTILITIES_H
|
||
|
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
class Utilities {
|
||
|
public:
|
||
|
static bool confirm(const std::string &question);
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif //BUDGET_UTILITIES_H
|