--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Plugins/VcsPlugins/vcsMercurial/ShelveExtension/shelve.py Thu Feb 20 19:51:30 2014 +0100 @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2014 Detlev Offenbach <detlev@die-offenbachs.de> +# + +""" +Module implementing the shelve extension interface. +""" + +from ..HgExtension import HgExtension +##from ..HgDialog import HgDialog + + +class Shelve(HgExtension): + """ + Class implementing the shelve extension interface. + """ + def __init__(self, vcs): + """ + Constructor + + @param vcs reference to the Mercurial vcs object + """ + super().__init__(vcs) + + def shutdown(self): + """ + Public method used to shutdown the shelve interface. + """