From 110a95b7869ffe9eb72e7c8e6e8bfb9edb7bb93a Mon Sep 17 00:00:00 2001 From: Jocelyn Fiat Date: Wed, 12 Jun 2013 18:12:06 +0200 Subject: [PATCH] Fixing compilation of CMS demo project. --- .../cms/src/notification/cms_email.e | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 draft/application/cms/src/notification/cms_email.e diff --git a/draft/application/cms/src/notification/cms_email.e b/draft/application/cms/src/notification/cms_email.e new file mode 100644 index 00000000..4f2a8905 --- /dev/null +++ b/draft/application/cms/src/notification/cms_email.e @@ -0,0 +1,18 @@ +note + description : "[ + Component representing an email for the CMS + ]" + author : "$Author$" + date : "$Date$" + revision : "$Revision$" + +class + CMS_EMAIL + +inherit + NOTIFICATION_EMAIL + +create + make + +end