Daniel Spittank
1d272caebe
unter iOS nicht unterstützt sind AudioRecorder, VideoRecorder, SprachEingabe, VibrationsSignal. Der BildRecorder kann nur interaktiv aufnehmen.
14 lines
325 B
Python
14 lines
325 B
Python
# -*- coding: utf-8 -*-
|
|
import velamentum.dateien.Datei
|
|
import console
|
|
|
|
class System(object):
|
|
"""Die Klasse System dient dem Zugriff auf bestimmte Funktionen des Systems.
|
|
|
|
Attribute:
|
|
--- keine ---
|
|
"""
|
|
@staticmethod
|
|
def oeffneDatei(pDatei):
|
|
console.open_in(pDatei.nennePfad())
|
|
|