Changeset 521

Show
Ignore:
Timestamp:
11/17/09 15:13:58 (14 years ago)
Author:
bhilburn
Message:

Added some more doxygen docs at the top of files.

Location:
vtcross/trunk/src
Files:
7 modified

Legend:

Unmodified
Added
Removed
  • vtcross/trunk/src/cognitive_engines/CBR_CE/CognitiveEngine.cpp

    r474 r521  
    1414 limitations under the License.  
    1515*/ 
     16 
     17/*! This file provides a default implementation for a case-based-reasoning based 
     18 * cognitive engine. 
     19 */ 
    1620 
    1721#include <cstdlib> 
  • vtcross/trunk/src/cognitive_engines/DSA_CE/DSA_CognitiveEngine.cpp

    r515 r521  
    1414 limitations under the License.  
    1515*/ 
     16 
     17/*! This file provides an implemention of a CBR-based CE that works with the 
     18 * provided test scripts and configuration filse. 
     19 */ 
    1620 
    1721#include <cstdlib> 
  • vtcross/trunk/src/cognitive_engines/OSSIE_DEMO_CE/OSSIE_CE.cpp

    r478 r521  
    55 */ 
    66 
    7 /* DESCRIPTION OF FILE. 
     7/*! This CE was written to extend the functionality of a basic CBR-based CE for 
     8 * use with the OSSIE demonstration. 
    89 */ 
    910 
  • vtcross/trunk/src/libvtcross/libvtcross.cpp

    r498 r521  
    1515*/ 
    1616 
    17 /* Implementation file for the VCROSS Cognitive Radio public API defined in 
     17/*! Implementation file for the VCROSS Cognitive Radio public API defined in 
    1818 * include/libvtcross.h. 
    1919 * 
    20  * MORE INFO HERE 
     20 * libvtcross provides the interface that radio host platforms and applications 
     21 * use to talk to the CROSS radio system.  All external communication with the 
     22 * CROSS radio occurs through this library. 
    2123 */ 
    2224 
  • vtcross/trunk/src/policy_engines/PolicyEngine.cpp

    r465 r521  
    1515*/ 
    1616 
    17 /* DESCRIPTION OF FILE. 
     17/*! This is a reference implementation for the CROSS Policy Engine. 
     18 * 
     19 * Note that this implementation is NOT complete. 
    1820 */ 
    1921 
  • vtcross/trunk/src/service_management_layer/ServiceManagementLayer.cpp

    r479 r521  
    1515*/ 
    1616 
    17 /* Inter-component communication handled by sockets and FD's.   
     17/*! Inter-component communication handled by sockets and FD's.   
    1818 * Server support has been completely implemented and tested. 
    1919 * 
  • vtcross/trunk/src/shell/CognitiveRadioShell.cpp

    r465 r521  
    1515*/ 
    1616 
    17 /* DESCRIPTION OF FILE. 
     17/*! This file provides the default implementation of the Cognitive Radio Shell. 
     18 * 
     19 * The CRS acts as the central control component in a CROSS radio system.  It 
     20 * handles component registration and message passing. 
    1821 */ 
    1922 
     
    832835    return; 
    833836} 
     837