Show
Ignore:
Timestamp:
10/13/09 17:36:56 (15 years ago)
Author:
mido
Message:

synchronization of documentation pages names

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/base/user_info.h

    r635 r659  
    33  \brief UI (user info) class for loading/saving objects from/to configuration files. 
    44  It is designed with use of libconfig C/C++ Configuration File Library 
    5   \ref ui_page 
     5  \ref ui 
    66  \author Vaclav Smidl. 
    77 
     
    3636//! Generic exception for reporting configuration errors 
    3737//! 
    38 //!  \ref ui_page 
     38//!  \ref ui 
    3939class UIException : public std::exception { 
    4040private: 
     
    6868//! Exception for reporting configuration errors related to some concrete Setting path 
    6969//! 
    70 //!  \ref ui_page 
     70//!  \ref ui 
    7171class UISettingException : public UIException { 
    7272public: 
     
    8686//! Exception for reporting configuration errors in the "class" attribute 
    8787//! 
    88 //!  \ref ui_page 
     88//!  \ref ui 
    8989class UIClassException : public UIException { 
    9090public: 
     
    124124\endcode 
    125125 
    126 \ref ui_page 
     126\ref ui 
    127127*/ 
    128128class UIFile : public Config { 
     
    205205that the #result Setting reference is valid within the scope of SettingResolver instance. 
    206206 
    207 \ref ui_page 
     207\ref ui 
    208208 */ 
    209209class SettingResolver : root { 
     
    238238descendant ParticularUI<T>. 
    239239 
    240 \ref ui_page 
     240\ref ui 
    241241*/ 
    242242class UI { 
     
    579579 
    580580//! The only UI descendant class which is not intended for direct use. It should be accessed within the UIREGISTER macro only. 
    581 //! \ref ui_page 
     581//! \ref ui 
    582582template<typename T> class ParticularUI : private UI { 
    583583public: 
     
    600600  This macro should be used in header file, immediately after a class declaration. 
    601601 
    602   \ref ui_page 
     602  \ref ui 
    603603*/ 
    604604#ifndef BDMLIB 
     
    617617  Technical meann of registering UIREGISTER(class_name<template_name>). 
    618618 
    619   \ref ui_page 
     619  \ref ui 
    620620 */ 
    621621#ifndef BDMLIB