GRASS Programmer's Manual  6.5.svn(2014)-r66266
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
vdigit/main.py
Go to the documentation of this file.
1 """!
2 @package vdigit.main
3 
4 @brief wxGUI vector digitizer
5 
6 Classes:
7  - main::VDigit
8 
9 (C) 2007-2011 by the GRASS Development Team
10 
11 This program is free software under the GNU General Public License
12 (>=v2). Read the file COPYING that comes with GRASS for details.
13 
14 @author Martin Landa <landa.martin gmail.com>
15 """
16 
17 try:
18  from vdigit.wxdigit import IVDigit, GV_LINES
19  haveVDigit = True
20  errorMsg = ''
21 except (ImportError, NameError), err:
22  haveVDigit = False
23  errorMsg = err
24  GV_LINES = -1
25  class IVDigit:
26  def __init__(self):
27  pass
28 
29 class VDigit(IVDigit):
30  def __init__(self, mapwindow):
31  """!Base class of vector digitizer
32 
33  @param mapwindow reference to mapwindow (mapdisp_window.BufferedWindow) instance
34  """
35  IVDigit.__init__(self, mapwindow)
def __init__
Base class of vector digitizer.
Definition: vdigit/main.py:30
wxGUI vector digitizer (base class)