Changeset 221

Show
Ignore:
Timestamp:
03/29/09 15:57:25 (15 years ago)
Author:
bhilburn
Message:

Fixed missing colon, made var name more descriptive, added TODOs for
description, added white space for consistency.

Files:
1 modified

Legend:

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

    r220 r221  
    7777}; 
    7878 
     79 
     80/* TODO 
     81 * 
     82 */ 
    7983struct Mission { 
    8084    std::string name; 
    8185    uint32_t missionID; 
    8286    uint32_t numServices; 
    83     Service *s; 
     87    Service *services; 
    8488}; 
    8589 
     90 
     91/* TODO 
     92 * 
     93 */ 
    8694struct Service { 
    87     std:string name; 
     95    std::string name; 
    8896    uint16_t socketFD; 
    8997};