Add LOL component
authordrewc <drewc@tech.coop>
Thu, 8 Jan 2009 02:34:08 +0000 (18:34 -0800)
committerdrewc <drewc@tech.coop>
Thu, 8 Jan 2009 02:34:08 +0000 (18:34 -0800)
Ignore-this: 90cb8901749f588f36b12703a3652d01

darcs-hash:20090108023408-39164-3242410a170c5738c33176b191a80eb79fdf144f.gz

src/ucw/lol-components.lisp [new file with mode: 0644]

diff --git a/src/ucw/lol-components.lisp b/src/ucw/lol-components.lisp
new file mode 100644 (file)
index 0000000..3a502c4
--- /dev/null
@@ -0,0 +1,14 @@
+(in-package :lol-ucw)
+
+(defcomponent lol-component ()
+  ())
+
+(defmethod output-component ((self lol-component))
+  self)
+
+(defmethod render ((self lol-component))
+  (display (output-component self) self))
+
+
+
+