Added a missing Windows specific macro, fixed some documentation comments.

git-svn-id: http://voip.null.ro/svn/yate@3792 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
paulc 2010-11-04 16:06:55 +00:00
parent 8e21f8cd26
commit 73b866e6a2
2 changed files with 5 additions and 5 deletions

View File

@ -61,7 +61,7 @@ class ASNError;
* Helper class for operations with octet strings. Helps with conversions from String to/from DataBlock
* @short Helper class for operations with octet strings
*/
class OctetString : public DataBlock
class YASN_API OctetString : public DataBlock
{
public:
/**
@ -90,7 +90,7 @@ public:
* @return Hexified string
*/
inline const String toHexString() const
{
{
String str;
str = str.hexify(data(),length());
return str;
@ -100,7 +100,7 @@ public:
* @return The DataBlock built from the given hexified string
*/
inline DataBlock& fromHexString(const String& value)
{
{
unHexify(value,value.length());
return *this;
}

View File

@ -680,7 +680,7 @@ public:
/**
* Retrieve the statistical data from this receiver in a NamedList. Reset all the data.
* @param NamedList to populate with the values for different counters
* @param stat NamedList to populate with the values for different counters
*/
virtual void stats(NamedList& stat) const;
@ -813,7 +813,7 @@ public:
/**
* Retrieve the statistical data from this receiver in a NamedList. Reset all the data.
* @param NamedList to populate with the values for different counters
* @param stat NamedList to populate with the values for different counters
*/
virtual void stats(NamedList& stat) const;