#ifndef REVISION_INFO_HPP
#define REVISION_INFO_HPP

#include <string>

struct RevisionInfo
{
  static std::string version();
  static std::string head();
  static std::string hash();
  static bool isClean();
};

#endif // REVISION_INFO_HPP