15 lines
377 B
Python
15 lines
377 B
Python
#!/usr/bin/env python
|
|
#coding:utf-8
|
|
# Purpose: Presentation Page Class
|
|
# Created: 12.02.2011
|
|
# Copyright (C) 2011, Manfred Moitzi
|
|
# License: MIT license
|
|
from __future__ import unicode_literals, print_function, division
|
|
__author__ = "mozman <mozman@gmx.at>"
|
|
|
|
from .drawingpage import DrawingPage
|
|
|
|
class PresentationPage(DrawingPage):
|
|
def _setup_new_page(self):
|
|
pass
|