Changeset 7535 for source/ariba/LinkProperties.h
- Timestamp:
- Feb 5, 2010, 9:08:33 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/LinkProperties.h
r7468 r7535 53 53 namespace ariba { 54 54 55 /** 56 * Link properties storage. Currently empty but will 57 * contain properties to create the link in the future 58 */ 55 59 class LinkProperties { 56 60 public: 61 /** 62 * Constructor of LinkProperties 63 */ 57 64 LinkProperties(); 58 ~LinkProperties();59 65 66 /** 67 * Destructor of LinkProperties 68 */ 69 virtual ~LinkProperties(); 70 71 /** 72 * Convert to readable string 73 * @return string representation 74 */ 60 75 string toString() const; 76 77 /** 78 * Default instance of LinkProperties 79 */ 61 80 static const LinkProperties DEFAULT; 62 81 };
Note:
See TracChangeset
for help on using the changeset viewer.