Changeset 220

Show
Ignore:
Timestamp:
03/28/09 13:38:42 (15 years ago)
Author:
trnewman
Message:

Added structs for services and missions.

Files:
1 modified

Legend:

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

    r195 r220  
    7777}; 
    7878 
     79struct Mission { 
     80    std::string name; 
     81    uint32_t missionID; 
     82    uint32_t numServices; 
     83    Service *s; 
     84}; 
     85 
     86struct Service { 
     87    std:string name; 
     88    uint16_t socketFD; 
     89};  
     90 
    7991#endif