hello
 
i have a little verbatim problem
 
i used the \startEIFFEL \stopEIFFEL verbatim environment in a verry simple way like this:
 
\startEIFFEL
class
    DEQUE [G]
 
    inherit
        DOUBLE_LINKED_LIST[G]
        rename
            extend as insertRight,
            prepend as insertLeft
        end
create
    make, make_empty
 
feature -- Access
           
    -- and so on
\stopEIFFEL
 
now i wanted to make this things a bit more useful and flexible.
 
i thougt of something like this
 
\startEIFFEL
    \input deque
\stopEIFFEL
 
but of corse the keyword input is normal text in verbatim mode... :)
is there a simple solution for that, for example like this
 
\startEIFFEL
\specialcommand{\input deque}
\stopEIFFEL
???
 
by the way : can i give as to the inputcommand a argument like this:
 
\input D:\Files\ETH\Eiffel\deque.e
 
where "deque.e" is a normal eiffel source file....
 
thanks for an answer
 
mfg
 
severin