예제 #1
0
파일: rendition.hpp 프로젝트: A1kmm/libzinc
	int removeGraphic(Graphic& graphic)
	{
		return Cmiss_rendition_remove_graphic(id, graphic.getId());
	}
예제 #2
0
파일: rendition.hpp 프로젝트: A1kmm/libzinc
	Graphic getPreviousGraphic(Graphic& refGraphic)
	{
		return Graphic(Cmiss_rendition_get_previous_graphic(id, refGraphic.getId()));
	}
예제 #3
0
파일: rendition.hpp 프로젝트: A1kmm/libzinc
	int moveGraphicBefore(Graphic& graphic, Graphic& refGraphic)
	{
		return Cmiss_rendition_move_graphic_before(id, graphic.getId(), refGraphic.getId());
	}
예제 #4
0
파일: rendition.hpp 프로젝트: A1kmm/libzinc
	Graphic getNextGraphic(Graphic& refGraphic)
	{
		return Graphic(Cmiss_rendition_get_next_graphic(id, refGraphic.getId()));
	}