Ignore:
Timestamp:
04/13/11 15:15:12 (13 years ago)
Author:
hozdoba
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • XMLIO_V2/dev/dev_rv/src/xmlio/attribute_template_impl.hpp

    r152 r173  
    11#ifndef __XMLIO_CAttributeTemplate_impl__ 
    22#define __XMLIO_CAttributeTemplate_impl__ 
     3 
     4#include "array.hpp" 
    35 
    46namespace xmlioserver 
     
    102104         void CAttributeTemplate<T>::fromBinary(StdIStream & is) 
    103105      { 
    104          this->getValue()->fromBinary(is); 
     106         T value; 
     107         FromBinary(is, value); 
     108         this->setValue(value); 
    105109      } 
    106110 
Note: See TracChangeset for help on using the changeset viewer.