Source: SvgControls.js

/* vim:set filetype=javascript:*/
/*jsl:import Utils.js*/
/*global Class, Utils*/


/**
  @class Forward/Backwards controls.
  @author mark.veltzer@gmail.com (Mark Veltzer)
*/
var SvgControls = Class.create(/** @lends SvgControls.prototype */{
  /**
    creates a new instance
    @param {Config} config configuration for this instance.
    @return {SvgControls} the new instance.
    @author mark.veltzer@gmail.com (Mark Veltzer)
  */
  initialize: function(config) {
    Utils.pass(config);
  }
});