use ObjectURI more consistently
[gnash.git] / libcore / asobj / flash / net / net_pkg.cpp
blob12b5ac6fb7624cb719714feec7a511645c12e74e
1 // net_pkg.cpp: ActionScript "flash.net" package, for Gnash.
2 //
3 // Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Free Software
4 // Foundation, Inc
5 //
6 // This program is free software; you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation; either version 3 of the License, or
9 // (at your option) any later version.
10 //
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software
18 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 #include "as_object.h"
22 #include "VM.h"
23 #include "VM.h"
24 #include "fn_call.h"
25 #include "namedStrings.h"
26 #include "FileReferenceList_as.h"
27 #include "FileReference_as.h"
28 #include "net_pkg.h"
29 #include "Global_as.h"
31 namespace gnash {
33 static as_value
34 get_flash_net_package(const fn_call& fn)
36 log_debug("Loading flash.net package");
38 Global_as& gl = getGlobal(fn);
40 as_object* pkg = createObject(gl);
42 VM& vm = getVM(fn);
44 filereference_class_init(*pkg, getURI(vm, "FileReference"));
46 return pkg;
49 void
50 flash_net_package_init(as_object& where, const ObjectURI& uri)
52 // TODO: this may not be correct, but it should be enumerable.
53 const int flags = 0;
54 where.init_destructive_property(uri, get_flash_net_package, flags);
58 } // end of gnash namespace