paradiseo/eo/tutorial/Lesson3
evomarc 04e429fdb1 I had to change the whole way the parameters are read, because EGCS did not
allow the nice constructs I had imagined (and compiled with g++)
- I removed the createParam method in Parser class - that was creating the parameters
  on the heap. Not allowed to have a templatized method ???
- I removed the subroutine read_param in SecondBitEA, as you need to create
  permanent parameters (eoParser only holds references), and egcs did not allow
  to create them by reference, i.e. in the line
  eoValueParam<xxx> & blablaParam(...);

So now everything is done in the main_function, and 3 lines are needed to create
and read every paramter (sigh ...)
2001-01-02 07:03:57 +00:00
..
binary_value.h Initial version of the tutorial. 2000-11-29 18:19:57 +00:00
exercise1.cpp Had forgotten the section name of the parser.processParam call in the 2000-12-22 15:13:54 +00:00
Makefile Initial version of the tutorial. 2000-11-29 18:19:57 +00:00
SecondBitEA.cpp I had to change the whole way the parameters are read, because EGCS did not 2001-01-02 07:03:57 +00:00