#ifndef HELP_H
#define HELP_H

#include <iostream>

class Help {
public:
	Help();
	virtual ~Help();

	void dispGeneral();
};

#endif // HELP_H