Skip to content

Commit e510f52

Browse files
author
Daniel Kroening
committed
add messaget::faint, italic, underline
1 parent e21d82a commit e510f52

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

src/util/message.h

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,24 @@ class messaget
337337
return command(1);
338338
}
339339

340+
/// render text with faint font
341+
static commandt faint()
342+
{
343+
return command(2);
344+
}
345+
346+
/// render italic text
347+
static commandt italic()
348+
{
349+
return command(3);
350+
}
351+
352+
/// render underlined text
353+
static commandt underline()
354+
{
355+
return command(4);
356+
}
357+
340358
mstreamt &get_mstream(unsigned message_level) const
341359
{
342360
mstream.message_level=message_level;

0 commit comments

Comments
 (0)