src/core/model/string.h
author Peter D. Barnes, Jr. <barnes26@llnl.gov>
Fri, 31 Jan 2014 13:09:46 -0800
changeset 10602 c09b70543458
parent 6821 203367ae7433
child 10654 0148f9c47331
permissions -rw-r--r--
[doxygen] Fix some minor doxygen errors.

#ifndef NS3_STRING_H
#define NS3_STRING_H

#include <string>
#include "attribute-helper.h"

namespace ns3 {

/**
 * \ingroup AttributeList
 *
 * \class ns3::StringValue
 * \brief hold variables of type string
 *
 * This class can be used to hold variables of type string,
 * that is, either char * or std::string.
 */
ATTRIBUTE_VALUE_DEFINE_WITH_NAME (std::string, String);
ATTRIBUTE_ACCESSOR_DEFINE (String);
ATTRIBUTE_CHECKER_DEFINE (String);

} // namespace ns3


#endif /* NS3_STRING_H */