comparison src/ov.h @ 4906:6754342ef7ad

[project @ 2004-06-23 11:11:50 by jwe]
author jwe
date Wed, 23 Jun 2004 11:11:51 +0000
parents 35bfb4e0b96b
children 1242acab4246
comparison
equal deleted inserted replaced
4905:f7a337f3fd9e 4906:6754342ef7ad
555 { return rep->char_matrix_value (frc_str_conv); } 555 { return rep->char_matrix_value (frc_str_conv); }
556 556
557 virtual charNDArray char_array_value (bool frc_str_conv = false) const 557 virtual charNDArray char_array_value (bool frc_str_conv = false) const
558 { return rep->char_array_value (frc_str_conv); } 558 { return rep->char_array_value (frc_str_conv); }
559 559
560 virtual int8NDArray int8_array_value (void) const
561 { return rep->int8_array_value (); }
562
563 virtual int16NDArray int16_array_value (void) const
564 { return rep->int16_array_value (); }
565
566 virtual int32NDArray int32_array_value (void) const
567 { return rep->int32_array_value (); }
568
569 virtual int64NDArray int64_array_value (void) const
570 { return rep->int64_array_value (); }
571
572 virtual uint8NDArray uint8_array_value (void) const
573 { return rep->uint8_array_value (); }
574
575 virtual uint16NDArray uint16_array_value (void) const
576 { return rep->uint16_array_value (); }
577
578 virtual uint32NDArray uint32_array_value (void) const
579 { return rep->uint32_array_value (); }
580
581 virtual uint64NDArray uint64_array_value (void) const
582 { return rep->uint64_array_value (); }
583
560 virtual string_vector all_strings (bool pad = false, 584 virtual string_vector all_strings (bool pad = false,
561 bool force = false) const 585 bool force = false) const
562 { return rep->all_strings (pad, force); } 586 { return rep->all_strings (pad, force); }
563 587
564 virtual std::string string_value (bool force = false) const 588 virtual std::string string_value (bool force = false) const