From 1b6292aaea20bdda6eda386495845830460b39d8 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Fri, 9 Aug 2013 23:04:59 -0700 Subject: [PATCH] rt: Remove rust_signal.h --- src/rt/rust_signal.h | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 src/rt/rust_signal.h diff --git a/src/rt/rust_signal.h b/src/rt/rust_signal.h deleted file mode 100644 index 4281092f8351..000000000000 --- a/src/rt/rust_signal.h +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright 2012 The Rust Project Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// http://rust-lang.org/COPYRIGHT. -// -// Licensed under the Apache License, Version 2.0 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - -#ifndef RUST_SIGNAL_H -#define RUST_SIGNAL_H - -// Just an abstract class that represents something that can be signalled -class rust_signal { -public: - virtual void signal() = 0; - virtual ~rust_signal() {} - rust_signal() {} - -private: - // private and undefined to disable copying - rust_signal(const rust_signal& rhs); - rust_signal& operator=(const rust_signal& rhs); -}; - -#endif /* RUST_SIGNAL_H */