7b947745e4657ac6fcb3e431f084e44a7769d419
[remotepc] / pcremote-client / connection / wirelessconnectionmanager.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 #  ****************************************************************************
5 #  Copyright (c) 2008 INdT/Fucapi.
6 #  This program is free software: you can redistribute it and/or modify
7 #  it under the terms of the GNU Lesser General Public License as published by
8 #  the Free Software Foundation, either version 3 of the License, or
9 #  (at your option) any later version.
10
11 #  This program is distributed in the hope that it will be useful,
12 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #  GNU Lesser General Public License for more details.
15
16 #  You should have received a copy of the GNU Lesser General Public License
17 #  along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
19 #  ============================================================================
20 #  Project Name : PC Remote
21 #  Author       : AndrĂ© Portela
22 #  Email        : andre_portela_@hotmail.com
23 #  Version      : 0.1
24 #  Description  : Tablet Application Wireless Connection Manager Class
25 #  ============================================================================
26
27 from genericconnectionmanager import * 
28
29 class WirelessConnectionManager(GenericConnectionManager):
30         def __init__(self):
31                 GenericConnectionManager.__init__(self)
32                 #para acessar facilmente qualquer metodo generico
33                 #self.super = generico()
34                 print "init do Wireless"
35                 self.tipo = "wireless"
36
37         def metodo(self):
38                 print "(Wireless)Metodo do", self.tipo
39
40