00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #if !defined (octave_lvalue_h)
00025 #define octave_lvalue_h 1
00026
00027 class octave_value;
00028 class octave_value_list;
00029
00030 #include <string>
00031
00032 #include "oct-obj.h"
00033 #include "pt-idx.h"
00034
00035
00036
00037
00038 static octave_value dummy_val;
00039
00040 class
00041 octave_lvalue
00042 {
00043 public:
00044
00045 octave_lvalue (octave_value *v = &dummy_val)
00046 : val (v), type (), idx (), nel (1), index_set (false) { }
00047
00048 octave_lvalue (const octave_lvalue& vr)
00049 : val (vr.val), type (vr.type), idx (vr.idx), nel (vr.nel),
00050 index_set (vr.index_set) { }
00051
00052 octave_lvalue& operator = (const octave_lvalue& vr)
00053 {
00054 if (this != &vr)
00055 {
00056 val = vr.val;
00057 type = vr.type;
00058 idx = vr.idx;
00059 nel = vr.nel;
00060 index_set = vr.index_set;
00061 }
00062
00063 return *this;
00064 }
00065
00066 ~octave_lvalue (void) { }
00067
00068 bool is_defined (void) { return val->is_defined (); }
00069
00070 bool is_undefined (void) { return val->is_undefined (); }
00071
00072 bool is_map (void) { return val->is_map (); }
00073
00074 void define (const octave_value& v) { *val = v; }
00075
00076 void assign (octave_value::assign_op, const octave_value&);
00077
00078 void numel (octave_idx_type n) { nel = n; }
00079
00080 octave_idx_type numel (void) const { return nel; }
00081
00082 void set_index (const std::string& t, const std::list<octave_value_list>& i);
00083
00084 void clear_index (void) { type = std::string (); idx.clear (); }
00085
00086 void do_unary_op (octave_value::unary_op op);
00087
00088 octave_value value (void);
00089
00090 const octave_value *object (void) const { return val; }
00091
00092 private:
00093
00094 octave_value *val;
00095
00096 std::string type;
00097
00098 std::list<octave_value_list> idx;
00099
00100 octave_idx_type nel;
00101
00102 bool index_set;
00103 };
00104
00105 #endif
00106
00107
00108
00109
00110
00111