#
# $Id: address.icn,v 1.2 2004/02/12 17:07:53 rparlett Exp $
#

package mail

class Address()
   abstract method to_rfc822()

   abstract method parse(s)

   abstract method generate_mailboxes()

   method to_string()
      return to_rfc822()
   end
end