autotyper/vimtyper.h

18 lines
299 B
C
Raw Normal View History

2019-10-26 13:16:22 +00:00
#ifndef VIMTYPER_H
#define VIMTYPER_H
#include "typer.h"
class VimTyper : public Typer
{
public:
VimTyper(std::unique_ptr<KeyHandler> keyHandler) : Typer(std::move(keyHandler)) { }
virtual ~VimTyper() override { }
protected:
virtual void OnStart() override;
};
#endif // VIMTYPER_H