MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / HtmlLink

Class HtmlLink

src/lock/print.cpp:194–211  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

192
193
194class HtmlLink
195{
196public:
197 HtmlLink(const TEXT* prefix, const SLONG value)
198 {
199 if (sw_html_format && value && prefix)
200 sprintf(strBuffer, "<a href=\"#%s%" SLONGFORMAT"\">%6" SLONGFORMAT"</a>", prefix, value, value);
201 else
202 sprintf(strBuffer, "%6" SLONGFORMAT, value);
203 }
204 operator const TEXT*()
205 {
206 return strBuffer;
207 }
208private:
209 TEXT strBuffer[256];
210 HtmlLink(const HtmlLink&) {}
211};
212
213
214static const TEXT history_names[][10] =

Callers 7

CLIB_ROUTINE mainFunction · 0.85
prt_historyFunction · 0.85
prt_lockFunction · 0.85
prt_owner_wait_cycleFunction · 0.85
prt_requestFunction · 0.85
prt_queFunction · 0.85
prt_que2Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected