#!/usr/bin/env python

# GRAPHICAL interface for setup of QMX calculations
#
# Torsten Kerber, ENS LYON: 2011, 07, 11
#
# This work is supported by Award No. UK-C0017, made by King Abdullah
# University of Science and Technology (KAUST)

#-------------------------------------------------------------------------------
#--- GENERAL -------------------------------------------------------------------
#-------------------------------------------------------------------------------
class Definition(object):
    def getValue(self, key):
        if self.keywords.__contains__(key):
            return self.keywords[key]
        return ''

