#ifndef DOS2UNIX_H
#define DOS2UNIX_H
#include <string>
class Dos2Unix
{
public:
static void run(std::string& s);
};
#endif