update copyright date
[gnash.git] / libcore / abc / asException.h
blob80bf4664d90377687c876119a56b5b0373ad342b
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_EXCEPTION_H
19 #define GNASH_AS_EXCEPTION_H
21 namespace gnash {
22 namespace abc {
23 class Namespace;
24 class Class;
28 namespace gnash {
30 class asException
32 public:
33 void setStart(boost::uint32_t i) { _start = i; }
34 void setEnd(boost::uint32_t i) { mEnd = i; }
35 void setCatch(boost::uint32_t i) { mCatch = i; }
36 void catchAny() { mCatchAny = true; }
37 void setCatchType(abc::Class* p) { mCatchType = p; }
38 void setNamespace(abc::Namespace* n) { _namespace = n; }
39 void setName(string_table::key name) { _name = name; }
41 private:
42 boost::uint32_t _start;
43 boost::uint32_t mEnd;
44 boost::uint32_t mCatch;
45 bool mCatchAny;
46 abc::Class *mCatchType;
47 abc::Namespace *_namespace;
48 string_table::key _name;
51 } // namespace gnash
52 #endif