22 lines
302 B
C++
22 lines
302 B
C++
|
#ifndef Spigot_h
|
||
|
#define Spigot_h
|
||
|
|
||
|
#include <iostream>
|
||
|
#include <vector>
|
||
|
|
||
|
class Spigot {
|
||
|
public:
|
||
|
/* functions */
|
||
|
Spigot(int requestedNumDigits);
|
||
|
void pump(void);
|
||
|
|
||
|
private:
|
||
|
std::vector<int> spigotList;
|
||
|
int spigotListLength;
|
||
|
int carry;
|
||
|
std::vector<int> preDigits;
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif
|