diff --git a/avogadro/quantumio/genericoutput.cpp b/avogadro/quantumio/genericoutput.cpp index aa1cc67fae..466602ab28 100644 --- a/avogadro/quantumio/genericoutput.cpp +++ b/avogadro/quantumio/genericoutput.cpp @@ -9,6 +9,7 @@ #include #include "gamessus.h" +#include "molden.h" #include "nwchemlog.h" #include "orca.h" @@ -50,6 +51,10 @@ bool GenericOutput::read(std::istream& in, Core::Molecule& molecule) // GAMESS-US .. don't know if we can read Firefly or GAMESS-UK reader = new GAMESSUSOutput; break; + } else if (line.find("[Molden Format]") != std::string::npos) { + // molden with .out extension + reader = new MoldenFile; + break; } else if (line.find("O R C A") != std::string::npos) { // ORCA reader reader = new ORCAOutput;