12 lines
160 B
C++
12 lines
160 B
C++
|
|
|
|
#ifndef ATMADMIN_H
|
|
#define ATMADMIN_H
|
|
|
|
namespace AtmAdmin {
|
|
// startup() is inline because of how small it is.
|
|
char startup();
|
|
}
|
|
|
|
#endif //ATMADMIN_H
|