diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | bank-eiffel/application.e | 24 | ||||
| -rw-r--r-- | bank-eiffel/bank.ecf | 21 |
3 files changed, 46 insertions, 0 deletions
| @@ -11,3 +11,4 @@ pacman-c++/*.pb.cc | |||
| 11 | *-build-release | 11 | *-build-release |
| 12 | *-build-desktop | 12 | *-build-desktop |
| 13 | .*.swp | 13 | .*.swp |
| 14 | bank-eiffel/EIFGENs | ||
diff --git a/bank-eiffel/application.e b/bank-eiffel/application.e new file mode 100644 index 0000000..c880bf9 --- /dev/null +++ b/bank-eiffel/application.e | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | note | ||
| 2 | description : "bank application root class" | ||
| 3 | date : "$Date$" | ||
| 4 | revision : "$Revision$" | ||
| 5 | |||
| 6 | class | ||
| 7 | APPLICATION | ||
| 8 | |||
| 9 | inherit | ||
| 10 | ARGUMENTS | ||
| 11 | |||
| 12 | create | ||
| 13 | make | ||
| 14 | |||
| 15 | feature {NONE} -- Initialization | ||
| 16 | |||
| 17 | make | ||
| 18 | -- Run application. | ||
| 19 | do | ||
| 20 | --| Add your code here | ||
| 21 | print ("Hello Eiffel World!%N") | ||
| 22 | end | ||
| 23 | |||
| 24 | end | ||
diff --git a/bank-eiffel/bank.ecf b/bank-eiffel/bank.ecf new file mode 100644 index 0000000..8164c31 --- /dev/null +++ b/bank-eiffel/bank.ecf | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | <?xml version="1.0" encoding="ISO-8859-1"?> | ||
| 2 | <system xmlns="http://www.eiffel.com/developers/xml/configuration-1-5-0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.eiffel.com/developers/xml/configuration-1-5-0 http://www.eiffel.com/developers/xml/configuration-1-5-0.xsd" name="bank" uuid="ABD750A4-A528-4FEE-A7EA-37791A0D0F37"> | ||
| 3 | <target name="bank"> | ||
| 4 | <root feature="make" class="APPLICATION"/> | ||
| 5 | <option warning="true"> | ||
| 6 | <assertions precondition="true" postcondition="true" check="true" invariant="true" loop="true" supplier_precondition="true"/> | ||
| 7 | </option> | ||
| 8 | <precompile name="base_pre" location="$ISE_PRECOMP/base.ecf"/> | ||
| 9 | <library name="base" location="$ISE_LIBRARY/library/base/base.ecf"/> | ||
| 10 | <cluster name="bank" location=".\" recursive="true"> | ||
| 11 | <file_rule> | ||
| 12 | <exclude>/EIFGENs$</exclude> | ||
| 13 | <exclude>/.svn$</exclude> | ||
| 14 | <exclude>/CVS$</exclude> | ||
| 15 | </file_rule> | ||
| 16 | </cluster> | ||
| 17 | </target> | ||
| 18 | <target name="bank_dotnet" extends="bank"> | ||
| 19 | <setting name="msil_generation" value="true"/> | ||
| 20 | </target> | ||
| 21 | </system> | ||
