Show
Ignore:
Timestamp:
02/23/10 15:48:19 (14 years ago)
Author:
smidl
Message:

details

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • applications/doprava/traffic_agent.h

    r820 r836  
    1818                string name;             //! detector name 
    1919                int distance;                //! distance from stop-line 
    20                 RV rv; 
     20 
    2121                //! function loading info from Setting 
    2222                void from_setting(const Setting &set){ 
     
    3030class DetectorIn : public Detector{ 
    3131        string from; // from agent 
    32         Array<string> to; // to signal plans 
     32        Array<string> to_sg; // to signal plans 
    3333        void from_setting(const Setting &set){ 
    3434                Detector::from_setting(set); 
    3535                UI::get(from,set,"from",UI::compulsory); 
    36                 UI::get(to, set, "to", UI::compulsory); 
     36                UI::get(to_sg, set, "to_sg", UI::compulsory); 
    3737        } 
    3838};