log_event.py
changeset 50 f13cf27a360b
parent 49 aaa62c8e5bd5
child 51 07ca28f3a9f2
--- a/log_event.py	Sun Feb 08 04:59:22 2009 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,21 +0,0 @@
-"""
-    An IRC logfile consists of a series of events, a.k.a. "lines"
-"""
-
-class LogEvent (object) :
-    """
-        An event on some specific channel
-    """
-
-    # the event ype
-    type = None
-
-    # the UTC timestamp of the event
-    timestamp = None
-
-    # the event source
-    source = None
-
-    # associated data (message, etc)
-    data = None
-