Ignore:
Timestamp:
07/16/10 14:50:04 (14 years ago)
Author:
hozdoba
Message:

Gestion du calendrier, quelques modifications en cours avant d'arriver à une version correcte.

(calendar.old² sera supprimé par la suite)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XMLIO_V2/dev/dev_rv/src/XMLIO/group_template.hpp

    r113 r115  
    4646         } 
    4747 
    48          GroupTemplate<T, U>& createGroup(const string _id) throw (XMLIOUndefinedValueException) 
     48         GroupTemplate<T, U>& createGroup(const string& _id) throw (XMLIOUndefinedValueException) 
    4949         { 
    5050            GroupTemplate<T, U> &obj = GroupTemplate<T, U>::CreateObject(_id); 
     
    6262         } 
    6363 
    64          GroupTemplate<T, U>& getGroup(const string _id) throw (XMLIOUndefinedValueException) { return (*groupList[_id]); } 
     64         GroupTemplate<T, U>& getGroup(const string& _id) throw (XMLIOUndefinedValueException) { return (*groupList[_id]); } 
    6565         bool hasGroup(const string _id) { return (groupList.hasMappedValue(_id)); } 
    6666 
     
    7171         /// Pour les objets enfants /// 
    7272 
    73          T& createChild(const string _id) throw (XMLIOUndefinedValueException) 
     73         T& createChild(const string& _id) throw (XMLIOUndefinedValueException) 
    7474         { 
    7575            T& obj = ObjectTemplate<T>::CreateObject(_id); 
     
    8585         } 
    8686 
    87          T& getChild(const string _id) throw (XMLIOUndefinedValueException) { return (*childList[_id]); } 
    88          bool hasChild(const string _id) { return (childList.hasMappedValue(_id)); } 
     87         T& getChild(const string& _id) throw (XMLIOUndefinedValueException) { return (*childList[_id]); } 
     88         bool hasChild(const string& _id) { return (childList.hasMappedValue(_id)); } 
    8989 
    9090         const StrHashMap<T*>& getCurrentListChild(void) const { return (childList); } 
     
    152152         } 
    153153 
    154  
    155154         template <class V> V* createGroupAndParse(THashAttributes& attributes, XMLNode& _node) 
    156155         { 
Note: See TracChangeset for help on using the changeset viewer.