19 lines
372 B
C++
19 lines
372 B
C++
|
|
|
|
#ifndef ATMADMIN_H
|
|
#define ATMADMIN_H
|
|
|
|
#include "XMLStorage.h"
|
|
|
|
|
|
namespace AtmAdmin {
|
|
// startup() is inline because of how small it is.
|
|
char startup();
|
|
void handleInvalidArguments(int argc);
|
|
bool handleUserInformation(char choice, XMLStorage& mainStorage);
|
|
std::string changeAccountPin();
|
|
std::string changeAccountName();
|
|
}
|
|
|
|
#endif //ATMADMIN_H
|