<?php
/**
* Abstract superclass of all selector elements in the abstract syntax tree.
*
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
* @copyright Copyright 2010-2014 PhpCss Team
*/

namespace PhpCss\Ast {

  /**
  * Abstract superclass of all selector elements in the abstract syntax tree.
  */
  abstract class Selector extends Node {

  }
}
