some class
This commit is contained in:
25
src/c/Acces.py
Normal file
25
src/c/Acces.py
Normal file
@ -0,0 +1,25 @@
|
||||
from src.v import Panneau, Borne, Camera
|
||||
from src.c import Teleporteur
|
||||
from src.m import Parking, Place
|
||||
|
||||
|
||||
__author__ = 'sidya'
|
||||
|
||||
|
||||
class Acces:
|
||||
def __init__(self):
|
||||
self.__borne = Borne()
|
||||
self.__panneau = Panneau()
|
||||
self.__parkings = {}
|
||||
self.__camera = Camera()
|
||||
self.__teleporteur = Teleporteur()
|
||||
self.__clients = {}
|
||||
|
||||
def actionnerCamera(self, client):
|
||||
pass
|
||||
|
||||
def actionnerPanneau(self):
|
||||
pass
|
||||
|
||||
def lancerProcedureImmatr(self, voiture):
|
||||
pass
|
12
src/c/Teleporteur.py
Normal file
12
src/c/Teleporteur.py
Normal file
@ -0,0 +1,12 @@
|
||||
__author__ = 'sidya'
|
||||
|
||||
|
||||
class Teleporteur :
|
||||
def __init__(self):
|
||||
pass
|
||||
|
||||
def teleporterVoiture(self, voiture, place):
|
||||
pass
|
||||
|
||||
def teleporterVoirureSuperAbonne(self, voiture):
|
||||
pass
|
7
src/c/test/TestAcces.py
Normal file
7
src/c/test/TestAcces.py
Normal file
@ -0,0 +1,7 @@
|
||||
__author__ = 'sidya'
|
||||
|
||||
from nose.tools import assert_equal
|
||||
|
||||
|
||||
class TestAcces:
|
||||
pass
|
5
src/c/test/TestTeleporteur.py
Normal file
5
src/c/test/TestTeleporteur.py
Normal file
@ -0,0 +1,5 @@
|
||||
__author__ = 'sidya'
|
||||
|
||||
|
||||
class TestTeleporteur :
|
||||
pass
|
Reference in New Issue
Block a user