Show
Ignore:
Timestamp:
08/05/09 00:01:58 (15 years ago)
Author:
mido
Message:

1) ad UserInfo?: UI::get a UI::build predelany tak, ze vraci fals / NULL v pripade neexistence pozadovaneho Settingu, pridana enumericky typ UI::SettingPresence?, predelany stavajici UI implementace, dodelana UI dokumentace
2) dokoncena konfigurace ASTYLERU, brzy bude aplikovan
3) doxygen nastaven tak, ze vytvari soubor doxy_warnings.txt

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/stat/merger.h

    r423 r471  
    275275                        // find which method to use 
    276276                        string meth_str; 
    277                         UI::get<string> (meth_str, set, "method"); 
     277                        UI::get<string> (meth_str, set, "method", UI::compulsory); 
    278278                        if (!strcmp (meth_str.c_str(), "arithmetic")) 
    279279                                set_method (ARITHMETIC); 
     
    286286                                } 
    287287                        } 
    288                         if (set.exists("dbg_file")){  
    289                                 string dbg_file; 
    290                                 UI::get<string> (dbg_file, set, "dbg_file"); 
     288                        string dbg_file; 
     289                        if (UI::get(dbg_file, set, "dbg_file")) 
    291290                                set_debug_file(dbg_file); 
    292                         } 
    293291                        //validate() - not used 
    294292                }