Show
Ignore:
Timestamp:
03/23/09 10:52:00 (15 years ago)
Author:
bhilburn
Message:

Renamed the private socketFD to commandSocketFD to make it easier to
distinguish (and it just makes more sense).

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • vtcross/trunk/src/include/vtcross/components.h

    r190 r191  
    7777 * inherit (e.g. cognitive and policy engines). Inherits all functions from the 
    7878 * ABC Component publically. 
    79  * 
    80  * TODO perhaps this shouldn't be an abstract base class? Some functions, like 
    81  * GetRemoteComponentType, are going to be the same for all child classes 
    82  * anyways... 
    8379 */ 
    8480class Engine : public Component 
     
    148144         * is connected to. 
    149145         */ 
    150         int32_t socketFD; 
     146        int32_t shellSocketFD; 
    151147}; 
    152148 
     
    204200         */ 
    205201        bool SML_present; 
    206         int32_t socketFD; 
     202        int32_t commandSocketFD; 
    207203}; 
    208204 
     
    264260         */ 
    265261        bool SML_present; 
    266         int32_t socketFD; 
     262        int32_t commandSocketFD; 
    267263}; 
    268264