30 lines
604 B
ObjectPascal
30 lines
604 B
ObjectPascal
unit plgExtAttr;
|
|
|
|
interface
|
|
|
|
uses
|
|
plgType;
|
|
|
|
{ =========================================================================== }
|
|
|
|
const
|
|
GDefiniceExtAttr : array[0..0] of TplgExterniAtribut =
|
|
(
|
|
// aby bylo mozno nemit zadny externi atribut,
|
|
// musi zustat prvni akce nedefinovana !!
|
|
(JmenoTabulky : '')
|
|
|
|
//last
|
|
);
|
|
|
|
{ =========================================================================== }
|
|
|
|
implementation
|
|
|
|
{ ########################################################################### }
|
|
|
|
{ ########################################################################### }
|
|
|
|
end.
|
|
|