Skip to content

Instantly share code, notes, and snippets.

@kamito
Created May 25, 2011 14:28
Show Gist options
  • Select an option

  • Save kamito/991074 to your computer and use it in GitHub Desktop.

Select an option

Save kamito/991074 to your computer and use it in GitHub Desktop.
/**
* app.js
*/
// オブジェクト領域を確保する
goog.provide("app");
goog.provide("app.Base");
goog.provide("app.Page");
app.Base = function() {
};
app.Page = function() {
};
goog.inherits(app.Page, app.Base);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment