# File lib/parseconfig.rb, line 32
  def initialize(config_file=nil)
    @config_file = config_file
    @params = {}
    @groups = []
  
    if(self.config_file)
      self.validate_config()
      self.import_config()
    end
  end