From: Michael Orlitzky Date: Tue, 13 Jul 2010 19:41:45 +0000 (-0400) Subject: Added some more virtual function definitions to the Mailstore class. X-Git-Tag: 0.0.1~142 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=commitdiff_plain;h=dbeb9a88947d70d87cca3f9d25d786d6281a31df Added some more virtual function definitions to the Mailstore class. --- diff --git a/src/mailstore.rb b/src/mailstore.rb index 4d75b87..45a6ba8 100644 --- a/src/mailstore.rb +++ b/src/mailstore.rb @@ -1,13 +1,24 @@ class Mailstore - + attr_accessor :domain_root - + def initialize(domain_root) @domain_root = domain_root end - - def get_accounts_from_filesystem() + + def def get_domains_from_filesystem + raise NotImplementedError + end + + def get_accounts_from_filesystem(domains) + raise NotImplementedError + end + + def get_domain_path(domain) + raise NotImplementedError + end + + def get_account_path(account) raise NotImplementedError end - end