Changeset 103

Show
Ignore:
Timestamp:
03/08/09 16:30:23 (15 years ago)
Author:
bhilburn
Message:

Argh. Someone committed code with mixed spaces and tabs. Fixing.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • vtcross/branches/bhilburn/include/containers.h

    r102 r103  
    1515 
    1616struct CE_Info { 
    17         uint32_t numUtilities; 
    18         uint32_t numParameters; 
    19         uint32_t numObservables; 
     17    uint32_t numUtilities; 
     18    uint32_t numParameters; 
     19    uint32_t numObservables; 
    2020    uint32_t policy_engine; 
    2121    uint32_t policy_socket; 
     
    2424 
    2525struct Utility { 
    26         string name; 
    27         string units; 
    28         string goal; 
    29         float target; 
     26    string name; 
     27    string units; 
     28    string goal; 
     29    float target; 
    3030    float value; 
    3131}; 
    3232 
    3333struct Affect { 
    34         Utility *u; 
    35         string relation; 
     34    Utility *u; 
     35    string relation; 
    3636}; 
    3737 
    3838struct Parameter { 
    39         string name; 
    40         string units; 
    41         float min; 
    42         uint32_t numAffects; 
    43         Affect affection_list[10]; 
    44         float max; 
    45         float step; 
     39    string name; 
     40    string units; 
     41    float min; 
     42    uint32_t numAffects; 
     43    Affect affection_list[10]; 
     44    float max; 
     45    float step; 
    4646    float value; 
    4747}; 
    4848 
    4949struct Observable { 
    50         string name; 
    51         Affect affection_list[10]; 
    52         uint32_t numAffects; 
     50    string name; 
     51    Affect affection_list[10]; 
     52    uint32_t numAffects; 
    5353    float value; 
    5454};