|
1 # -*- coding: utf-8 -*- |
|
2 |
|
3 # Copyright (c) 2014 Detlev Offenbach <detlev@die-offenbachs.de> |
|
4 # |
|
5 |
|
6 """ |
|
7 Module implementing the shelve extension interface. |
|
8 """ |
|
9 |
|
10 from ..HgExtension import HgExtension |
|
11 ##from ..HgDialog import HgDialog |
|
12 |
|
13 |
|
14 class Shelve(HgExtension): |
|
15 """ |
|
16 Class implementing the shelve extension interface. |
|
17 """ |
|
18 def __init__(self, vcs): |
|
19 """ |
|
20 Constructor |
|
21 |
|
22 @param vcs reference to the Mercurial vcs object |
|
23 """ |
|
24 super().__init__(vcs) |
|
25 |
|
26 def shutdown(self): |
|
27 """ |
|
28 Public method used to shutdown the shelve interface. |
|
29 """ |