예제 #1
0
파일: variant.hpp 프로젝트: FollowMyVote/fc
 static inline void from_variant( const fc::variant& v, T& o, uint32_t max_depth = 1 )
 { 
     if( v.is_string() )
        o = fc::reflector<T>::from_string( v.get_string().c_str() );
     else
        o = fc::reflector<T>::from_int( v.as_int64() );
 }
예제 #2
0
파일: variant.hpp 프로젝트: BitMoneta/fc
 static inline void from_variant( const fc::variant& v, T& o ) 
 { 
     if( v.is_string() )
        o = fc::reflector<T>::from_string( v.get_string().c_str() );
     else 
        o = static_cast<T>(v.as_int64());
 }
예제 #3
0
파일: asset.hpp 프로젝트: milk57618/eos
inline void from_variant(const fc::variant& var, eosio::chain::asset& vo) {
   vo = eosio::chain::asset::from_string(var.get_string());
}
예제 #4
0
파일: name.cpp 프로젝트: 108518/eos
 void from_variant(const fc::variant& v, eosio::chain::name& check) { check = v.get_string(); }