diff options
author | Ananya Sen | 2012-02-02 12:38:29 -0800 |
---|---|---|
committer | Ananya Sen | 2012-02-02 12:38:29 -0800 |
commit | e806afea0eb1b66ac457471983db0e3d5942d222 (patch) | |
tree | d2b712293dc0c8b5f6d9dfe77f7b7eebfd62ac7c /js/mediators/io-mediator.js | |
parent | 0e595c4e11ce9b44eff157de8616ed15fcd5d6fc (diff) | |
parent | 33e655cbbb0816340c5a2e5d5cc0a6b0c7d9f53c (diff) | |
download | ninja-e806afea0eb1b66ac457471983db0e3d5942d222.tar.gz |
Merge branch 'FileIO' of github.com:joseeight/ninja-internal into FileIO
Diffstat (limited to 'js/mediators/io-mediator.js')
-rw-r--r-- | js/mediators/io-mediator.js | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/js/mediators/io-mediator.js b/js/mediators/io-mediator.js new file mode 100644 index 00000000..b392a065 --- /dev/null +++ b/js/mediators/io-mediator.js | |||
@@ -0,0 +1,27 @@ | |||
1 | /* <copyright> | ||
2 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
3 | No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> | ||
4 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
5 | </copyright> */ | ||
6 | |||
7 | //////////////////////////////////////////////////////////////////////// | ||
8 | // | ||
9 | var Montage = require("montage/core/core").Montage, | ||
10 | FileIo = require("js/io/system/fileio").FileIo, | ||
11 | ProjectIo = require("js/io/system/projectio").ProjectIo; | ||
12 | //////////////////////////////////////////////////////////////////////// | ||
13 | // | ||
14 | exports.IoMediator = Montage.create(Object.prototype, { | ||
15 | //////////////////////////////////////////////////////////////////// | ||
16 | // | ||
17 | name: { | ||
18 | enumerable: false, | ||
19 | value: function () { | ||
20 | // | ||
21 | } | ||
22 | } | ||
23 | //////////////////////////////////////////////////////////////////// | ||
24 | //////////////////////////////////////////////////////////////////// | ||
25 | }); | ||
26 | //////////////////////////////////////////////////////////////////////// | ||
27 | //////////////////////////////////////////////////////////////////////// \ No newline at end of file | ||