On Wed, Mar 2, 2011 at 9:38 AM, Lewis, Mark <[email protected]> wrote: > in interface.h: > class interface > { > public: > interface() ; > bool setup_geometry(QString, QString, QString) ; //args: xyz_file, > dat_file, ff_file > [snip] > }; > > in interface.cpp: > > #include "sasa_interface.h" > [snip] > sasa_interface::sasa_interface() //look a constructor! > {} > > bool sasa_interface::setup_geometry(QString xyz_filePath, QString > dat_filePath, QString ff_FilePath) //and here is where the functionality > lives > { > //code that is nice and works > } >
These functions are defined as belonging to class "interface", but implemented as "sasa_interface". Remove the "sasa_"s from interface.cpp and try again. Dave ------------------------------------------------------------------------------ Free Software Download: Index, Search & Analyze Logs and other IT data in Real-Time with Splunk. Collect, index and harness all the fast moving IT data generated by your applications, servers and devices whether physical, virtual or in the cloud. Deliver compliance at lower cost and gain new business insights. http://p.sf.net/sfu/splunk-dev2dev _______________________________________________ Avogadro-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/avogadro-devel
