blob: 052c753a5521524310712337fca3a27bfc209a85 [file] [log] [blame]
#ifndef RUST_SIGNAL_H
#define RUST_SIGNAL_H
// Just an abstrict class that reperesents something that can be signalled
class rust_signal {
public:
virtual void signal() = 0;
virtual ~rust_signal() {}
};
#endif /* RUST_SIGNAL_H */