Ignore:
Timestamp:
Feb 5, 2010, 9:08:33 AM (14 years ago)
Author:
Christoph Mayer
Message:

-missing doxygen in interface

File:
1 edited

Legend:

Unmodified
Added
Removed
  • source/ariba/LinkProperties.h

    r7468 r7535  
    5353namespace ariba {
    5454
     55/**
     56 * Link properties storage. Currently empty but will
     57 * contain properties to create the link in the future
     58 */
    5559class LinkProperties {
    5660public:
     61        /**
     62         * Constructor of LinkProperties
     63         */
    5764        LinkProperties();
    58         ~LinkProperties();
    5965
     66        /**
     67         * Destructor of LinkProperties
     68         */
     69        virtual ~LinkProperties();
     70
     71        /**
     72         * Convert to readable string
     73         * @return string representation
     74         */
    6075        string toString() const;
     76
     77        /**
     78         * Default instance of LinkProperties
     79         */
    6180        static const LinkProperties DEFAULT;
    6281};
Note: See TracChangeset for help on using the changeset viewer.