모호함과 시간의 칼을
내 심연에 꽂아,
빙- 돌려서 파내는 날들...
돌고 돌아,
처음으로,
밑바탕이 되는 토대로,
근본으로...
마흔이 되어
이제야
겟세마네 동산의 잔앞으로
지친 걸음을
겨우 겨우
한 걸음 내딛습니다.
2011년 12월31일
Yorktown, VA
'poem' 카테고리의 다른 글
| 마흔이 되어 (0) | 2011/12/31 |
|---|---|
| 흔들리는 하루 (0) | 2011/04/18 |
| 하루살이 2009 (8) (0) | 2009/10/27 |
| 속깊은곳 (0) | 2009/08/27 |
a header file
class a : public TObject
{
public:
A();
virtual ~A() {};
}
Then I've got the linking error of g++ as follows:
undefined reference to `vtable for A'
The solution is to define the real destructor in source file.
a header file
class a : public TObject
{
public:
A();
virtual ~A();
}
a source file
A::~A()
{
}
'computer > linux' 카테고리의 다른 글
| undefined reference to `vtable for A' (0) | 2011/12/17 |
|---|---|
| replace korean input method on debian 6 (0) | 2011/11/29 |
| prepare to do very crazy thing (0) | 2011/10/20 |
| make an audio cd from an avi source (0) | 2011/10/08 |
* sudo apt-get install im-config ibus-hangul im-switch
* im-config > Selec ibus for input method
* System-IBus Preferences> Input Medhod -> Korean
* Run im-switch -s ibus in a terminal, and logout & login
* Reference
http://www.debian.org/doc/manuals/debian-reference/ch08.en.html
http://wiki.debian.org/I18n/ibus
'computer > linux' 카테고리의 다른 글
| undefined reference to `vtable for A' (0) | 2011/12/17 |
|---|---|
| replace korean input method on debian 6 (0) | 2011/11/29 |
| prepare to do very crazy thing (0) | 2011/10/20 |
| make an audio cd from an avi source (0) | 2011/10/08 |






Recent Comment