diff options
author | uckelman <uckelman@nomic.net> | 2010-03-17 19:33:29 +0000 |
---|---|---|
committer | uckelman <uckelman@nomic.net> | 2010-03-17 19:33:29 +0000 |
commit | 96bd748c06255cbeab197af98683d640e036015f (patch) | |
tree | 78ce3be6d494544f28f415c592073a17482598da /Message.php |
Initial versions.
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6616 67b53d14-2c14-4ace-a08f-0dab2b34000c
Diffstat (limited to 'Message.php')
-rw-r--r-- | Message.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Message.php b/Message.php new file mode 100644 index 0000000..23fa849 --- /dev/null +++ b/Message.php @@ -0,0 +1,21 @@ +<?php + +interface Message { + public function getSource(); + + public function getPostId(); + + public function getFrom(); + + public function getSubject(); + + public function getMessageId(); + + public function getInReplyTo(); + + public function getReferences(); + + public function getBody(); +} + +?> |