Changeset 528

Show
Ignore:
Timestamp:
05/21/09 07:49:52 (3 years ago)
Author:
uncle_fungus
Message:

Document client-type thread-safety

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/include/client.h

    r527 r528  
    143143        void SaveXYZFile(void) const; 
    144144 
     145        /** 
     146         * Provide thread-safe method for setting client state. 
     147         * @param value The state to set 
     148         **/ 
    145149        void SetState(State value); 
    146150 
     151        /** 
     152         * Provide thread-safe method for getting client state. 
     153         * @return The client state 
     154         **/ 
    147155        const State GetState(void) const; 
    148156