update copyright date
[gnash.git] / libcore / abc / BoundValues.h
blob6d82f8d624202cd8f92e471f9c98b586cce248b3
1 //
2 // Copyright (C) 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
3 //
4 // This program is free software; you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation; either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
13 //
14 // You should have received a copy of the GNU General Public License
15 // along with this program; if not, write to the Free Software
16 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 #ifndef GNASH_AS_BOUND_VALUES_H
19 #define GNASH_AS_BOUND_VALUES_H
21 namespace gnash {
22 namespace abc {
24 class BoundValue;
26 class BoundAccessor
28 public:
29 bool setGetter(Method *p) { mGetter = p; return true; }
30 bool setSetter(Method *p) { _setter = p; return true; }
31 bool setValue(BoundValue *p) { mValue = p; return true; }
33 BoundValue* getValue() { return mValue; }
34 Method *getGetter() { return mGetter; }
35 Method *getSetter() { return _setter; }
37 private:
38 Method *mGetter;
39 Method *_setter;
40 BoundValue *mValue;
43 class BoundValue
45 public:
46 BoundValue() : mConst(false), mValue()
47 { mValue.set_undefined(); }
48 void setValue(as_value &v) { mValue = v; }
49 as_value getCurrentValue() { return mValue; }
51 void setType(Class *t) { mType = t; }
52 Class *getType() { return mType; }
54 private:
55 bool mConst;
56 Class *mType;
57 as_value mValue;
60 } // namespace abc
61 } // namespace gnash
63 #endif