Skip to content

Commit

Permalink
starting on model
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmoo committed Oct 24, 2011
1 parent 10e83d2 commit 0862e87
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/data/model.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
goog.provide('pl.data.Model');

goog.require('goog.events.EventTarget');

/**
* @constructor
* @extends {goog.events.EventTarget}
*/
pl.data.Model = function() {

};
goog.inherits(pl.data.Model, goog.events.EventTarget);

goog.scope(function() {
var c = pl.data.Model;

goog.scope(function() {
var p = c.prototype;

});
});

0 comments on commit 0862e87

Please sign in to comment.