Subversion Repositories DIN Is Noise

Rev

Rev 1713 | Rev 1819 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

/*
* help.h
* DIN Is Noise is copyright (c) 2006-2021 Jagannathan Sampath
* DIN Is Noise is released under GNU Public License 2.0
* For more information, please visit https://dinisnoise.org/
*/


#ifndef __din_help
#define __din_help
#include <string>
#include <vector>
struct help {
  std::vector<std::string> text;
  help (const std::string& fname);
  void operator() ();
};
#endif