#! /usr/bin/env python # -*- encoding: euc-kr -*- # Qt Interface : Python Function call From C++ import runtime def PyNotifyStage(text, is_change): print '### CALL FROM QT(C++) to PYTHON:', text, is_change from basemodel import NotifyStage if is_change: runtime.manager.change_stage(NotifyStage(text)) else: runtime.manager.stack_stage(NotifyStage(text))