The TextGeneratorSqlite3Impl
Class Reference
Declaration
class TextGeneratorSqlite3Impl { ... }
Base class
class | TextGeneratorIntf |
Abstract interface for a hyperlinked text fragment. More... | |
Public Constructors Index
TextGeneratorSqlite3Impl (StringVector &l) | |
Public Member Functions Index
void | writeString (std::string_view, bool) const override |
void | writeBreak (int) const override |
void | writeLink (const QCString &, const QCString &file, const QCString &anchor, std::string_view) const override |
Private Member Attributes Index
StringVector & | m_list |
Definition at line 833 of file sqlite3gen.cpp.
Public Constructors
TextGeneratorSqlite3Impl()
| inline |
Definition at line 836 of file sqlite3gen.cpp.
836 TextGeneratorSqlite3Impl(StringVector &l) : m_list(l) { }
Reference m_list.
Public Member Functions
writeBreak()
| inline virtual |
Definition at line 840 of file sqlite3gen.cpp.
Reference DBG_CTX.
writeLink()
| inline virtual |
Definition at line 844 of file sqlite3gen.cpp.
845 const QCString &anchor,std::string_view /*text*/
846 ) const override
847 {
848 std::string rs = file.str();
849 if (!anchor.isEmpty())
850 {
851 rs+="_1";
852 rs+=anchor.str();
853 }
854 m_list.push_back(rs);
855 }
References QCString::isEmpty, m_list and QCString::str.
writeString()
| inline virtual |
Definition at line 837 of file sqlite3gen.cpp.
Private Member Attributes
m_list
|
Definition at line 857 of file sqlite3gen.cpp.
Referenced by TextGeneratorSqlite3Impl and writeLink.
The documentation for this class was generated from the following file:
Generated via doxygen2docusaurus by Doxygen 1.14.0.