aboutsummaryrefslogtreecommitdiff
path: root/src/events.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/events.rs')
-rw-r--r--src/events.rs22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/events.rs b/src/events.rs
deleted file mode 100644
index 8c474d7..0000000
--- a/src/events.rs
+++ /dev/null
@@ -1,22 +0,0 @@
-use ident::Ident;
-
-macro_rules! string_record(
- ($name: ident, $( $fields: ident ),*) => (
- #[deriving(Show, Clone)]
- pub struct $name {
- $(pub $fields: String),*
- }
- )
-)
-
-string_record!(Welcome, source, target, msg)
-string_record!(YourHost, source, target, msg)
-string_record!(Created, source, target, msg)
-
-#[deriving(Show, Clone)]
-pub enum Event {
- RplWelcome(Box<Welcome>),
- RplYourHost(Box<YourHost>),
- RplCreated(Box<Created>),
- PrivMsg(Ident, String, String)
-}