indexing description: "Sample template" date: "$Date$" revision: "$Revision$" class SAMPLE_TEMPLATE inherit TEMPLATE feature -- Access description: STRING is -- Description do Result := "A sample of a system including source code." end content: STRING is -- Content do create Result.make_empty Result.append ("%N% %%T%N% %%T%N% %%T%T(Introductory remarks here...)%N% %%T%T2Compiling%N% %%T%T(Compilation instructions here...)%N% %%T%T2Running the Sample%N% %%T%T(How to use instructions here...)%N% %%T%T2Under the Hood%N% %%T%T(Source code links, technical details, etc here...)%N% %%T%N% %") end end -- class SAMPLE_TEMPLATE