1 
  2 goog.provide('nclosure.examples.animals.IAnimal');
  3 
  4 
  5 
  6 /**
  7  * This is the base animal interface that will be inherited by all animals.
  8  *
  9  * @interface
 10  */
 11 nclosure.examples.animals.IAnimal = function() {};
 12 
 13 
 14 /**
 15  * Makes the animal talk in its own special way
 16  */
 17 nclosure.examples.animals.IAnimal.prototype.talk = goog.abstractMethod;
 18