티스토리 툴바



마흔이 되어

마흔이 되어

모호함과 시간의 칼을
내 심연에 꽂아,
빙- 돌려서 파내는 날들...

돌고 돌아,
처음으로,
밑바탕이 되는 토대로,
근본으로...


마흔이 되어
이제야
겟세마네 동산의 잔앞으로

지친 걸음을
겨우 겨우
한 걸음 내딛습니다.


2011년 12월31일
Yorktown, VA
저작자 표시 비영리 변경 금지

'poem' 카테고리의 다른 글

마흔이 되어  (0) 2011/12/31
흔들리는 하루  (0) 2011/04/18
하루살이 2009 (8)  (0) 2009/10/27
속깊은곳  (0) 2009/08/27
댓글0 트랙백0

Trackback : http://citadel.tistory.com/trackback/283 관련글 쓰기

Top

undefined reference to `vtable for A'


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
댓글0 트랙백0

Trackback : http://citadel.tistory.com/trackback/282 관련글 쓰기

Top

replace korean input method on debian 6

* sudo apt-get remove scim
* 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
댓글0 트랙백0

Trackback : http://citadel.tistory.com/trackback/281 관련글 쓰기

Top

prev 1 2 3 4 5 ... 80 next