Changes between Version 1 and Version 2 of TorqueUsage/DataTypes/Atrrl


Ignore:
Timestamp:
09/08/06 09:41:12 (18 years ago)
Author:
bas
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TorqueUsage/DataTypes/Atrrl

    v1 v2  
    33= Attrl data type =
    44
     5Attrl is a structure which is defined in '''pbs_ifl.h'' as:
    56{{{
    67#!C
     
    1314};
    1415}}}
     16
     17== Python Usage ==
     18
     19If a function requires this data type then use the following code:
     20{{{
     21#!python
     22
     23# Values depend in which context we use it, eg for pbs_statnode()
     24#
     25attrl = pbs.new_attrl(2)
     26attrl[0].name = 'state'
     27attrl[1].name = 'np'
     28}}}