from CCP4ReportParser import *
import sys
from lxml import etree
from pointless_report import pointless_report

class pointless_reindexToMatch_report(pointless_report):
    # Specify which gui task and/or pluginscript this applies to
    TASKNAME = 'pointless_reindexToMatch'
    RUNNING = False
    
    def __init__(self, *args,**kw):
        pointless_report.__init__(self, *args, **kw)
        
        if 'jobStatus' in args and args.get('jobStatus').lower() == 'nooutput': return
        self.drawContents()

    def drawContents(self, parent=None):
        if parent is None: parent = self
        self.MainMessages(parent=parent)

