You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
525 B
22 lines
525 B
#pragma once
|
|
#include <efsw/efsw.hpp>
|
|
#include <git2.h>
|
|
#include <string> // for operator+, to_string
|
|
|
|
using std::string;
|
|
|
|
class UpdateListener : public efsw::FileWatchListener {
|
|
public:
|
|
bool changes = false;
|
|
git_repository* repo = nullptr;
|
|
|
|
UpdateListener(git_repository *r) : repo(r) {};
|
|
|
|
void handleFileAction(efsw::WatchID watchid,
|
|
const string& dir,
|
|
const string& filename,
|
|
efsw::Action action,
|
|
string oldFilename) override;
|
|
|
|
void reset_state();
|
|
};
|
|
|