equal
deleted
inserted
replaced
17 * |
17 * |
18 */ |
18 */ |
19 |
19 |
20 #include "string.h" |
20 #include "string.h" |
21 |
21 |
|
22 /** |
|
23 * \file |
|
24 * \ingroup attribute_String |
|
25 * String attribute value implementations. |
|
26 */ |
|
27 |
22 namespace ns3 { |
28 namespace ns3 { |
23 |
29 |
24 ATTRIBUTE_CHECKER_IMPLEMENT_WITH_NAME (String, "std::string"); |
30 ATTRIBUTE_CHECKER_IMPLEMENT_WITH_NAME (String, "std::string"); |
25 ATTRIBUTE_VALUE_IMPLEMENT_WITH_NAME (std::string, String); |
31 ATTRIBUTE_VALUE_IMPLEMENT_WITH_NAME (std::string, String); |
26 |
32 |