+class MECON_PDF_Tabla extends MECON_PDF_Contenido {
+
+ /**
+ * Configuracion
+ * @var array $config
+ * @access protected
+ */
+ var $_config;
+
+ /**
+ * Objeto MECON_HTML_Tabla.
+ * @var &Object $tabla MECON_HTML_Tabla
+ * @access protected
+ */
+ var $_tabla;
+
+ /**
+ * Objeto MECON_PDF_Marco
+ * @var &Object $marco
+ * @access protected
+ */
+ var $_marco;
+
+ /**
+ * Class Constructor
+ *
+ * @param &Object $TABLA MECON_HTML_Tabla
+ *
+ * @return void
+ * @access public
+ */
+ function MECON_PDF_Tabla(&$TABLA) {
+ $this->_tabla =& $TABLA;
+ $this->_config = include 'MECON/PDF/Tabla/medidas.php';
+ }
+