Files
mosh/keystroke.hpp
T
2011-08-08 18:41:09 -04:00

19 lines
338 B
C++

#ifndef KEYSTROKE_HPP
#define KEYSTROKE_HPP
#include <string>
#include <assert.h>
using namespace std;
class KeyStroke
{
public:
void subtract( KeyStroke * const ) {}
string diff_from( KeyStroke const &, int ) { return ""; }
void apply_string( string ) {}
bool operator==( KeyStroke const & ) const { return true; }
};
#endif