15 lines
243 B
C++
15 lines
243 B
C++
#ifndef CASHUTILS_H
|
|
#define CASHUTILS_H
|
|
|
|
#include <QObject>
|
|
#include <DeviceController/interfaces.h>
|
|
|
|
namespace CashUtils {
|
|
|
|
uint32_t getAmountOfInsertedCoins(hwinf* hw);
|
|
uint32_t getAmountOfInsertedNotes(hwinf* hw);
|
|
|
|
}
|
|
|
|
#endif // CASHUTILS_H
|