18 lines
231 B
C++
18 lines
231 B
C++
|
|
#ifndef DISTRIB_H
|
|
#define DISTRIB_H DISTRIB_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class distrib
|
|
{
|
|
public:
|
|
int readHostFile(const char * filename);
|
|
|
|
protected:
|
|
std::vector<std::string> m_hosts;
|
|
};
|
|
|
|
#endif
|