return mStartsPar;
}
-string& spComment::GetText()
+wxString& spComment::GetText()
{
- return mText;
+ return m_Text;
}
-string spComment::GetText() const
+wxString spComment::GetText() const
{
- return mText;
+ return m_Text;
}
/***** Implementation for class spContext *****/
string spOperation::GetFullName(MarkupTagsT tags)
{
- string txt = tags[TAG_BOLD].start + mRetType;
+ string txt = tags[TAG_BOLD].start + m_RetType;
txt += " ";
txt += m_Name;
txt += "( ";
txt += tags[TAG_BOLD].start;
- txt += param.mType;
+ txt += param.m_Type;
txt += tags[TAG_BOLD].end;
txt += tags[TAG_ITALIC].start;
size_t i = 0;
- while( i < mLine.length() && mLine[i] != '"' && mLine[i] != '<' )
+ while( i < m_Line.length() && m_Line[i] != '"' && m_Line[i] != '<' )
++i;
size_t start = i;
- while( i < mLine.length() && mLine[i] != '"' && mLine[i] != '>' )
+ while( i < m_Line.length() && m_Line[i] != '"' && m_Line[i] != '>' )
++i;
- if ( start < mLine.length() )
+ if ( start < m_Line.length() )
{
string fname;
- fname.append( mLine, start, ( i - start ) );
+ fname.append( m_Line, start, ( i - start ) );
return fname;
}
void spParameter::DumpThis(const wxString& indent) const
{
wxLogDebug("%sparam named '%s' of type '%s'",
- indent.c_str(), m_Name.c_str(), mType.c_str());
+ indent.c_str(), m_Name.c_str(), m_Type.c_str());
}
void spAttribute::DumpThis(const wxString& indent) const
{
wxLogDebug("%svariable named '%s' of type '%s'",
- indent.c_str(), m_Name.c_str(), mType.c_str());
+ indent.c_str(), m_Name.c_str(), m_Type.c_str());
}
void spOperation::DumpThis(const wxString& indent) const
mIsConstant ? "const " : "",
mIsVirtual ? "virtual " : "",
protection.c_str(),
- mScope.c_str(), m_Name.c_str(), mRetType.c_str());
+ mScope.c_str(), m_Name.c_str(), m_RetType.c_str());
}
void spPreprocessorLine::DumpThis(const wxString& indent) const
void spTypeDef::DumpThis(const wxString& indent) const
{
wxLogDebug("%stypedef %s = %s",
- indent.c_str(), m_Name.c_str(), mOriginalType.c_str());
+ indent.c_str(), m_Name.c_str(), m_OriginalType.c_str());
}
void spFile::DumpThis(const wxString& indent) const