| SOL9 2.0 Class: UnderlineFont |
| SOL9 C++ Class Library | SOL9 Samples | SOL9 Tutorial | SOL9 FAQ | SOL9 ClassTree |
/*
* UnderlineFont.h
* Copyright (c) 2011 Antillia.com TOSHIYUKI ARAI. ALL RIGHTS RESERVED.
*/
// SOL9
// 2008/09/04
#pragma once
#include <sol\MessageFont.h>
namespace SOL {
/**
* UnderlineFont class
*/
class UnderlineFont :public MessageFont {
public:
/**
* Constructor
*/
UnderlineFont()
:MessageFont() {
LOGFONT& lf = getLogMessageFont();
lf.lfUnderline=1;
}
public:
~UnderlineFont() {
}
};
}
|