16 lines
254 B
C
16 lines
254 B
C
|
#ifndef __NUM_SET_H__
|
||
|
#define __NUM_SET_H__
|
||
|
|
||
|
#include <vector>
|
||
|
#include <string>
|
||
|
#include <ostream>
|
||
|
|
||
|
#include "converts.h"
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
vector<string> generate_numbers(int, int);
|
||
|
ostream & operator<<(ostream &, const vector<string> &);
|
||
|
|
||
|
#endif
|