/***************************************************************************** - - - POLONY SEQUENCER ACQUISITION SUITE - - Church Lab - - Harvard Medical School - - - - Free software for running a Polony Sequencing automated microscope - - - - ========================================================================= - - - - - - config_reader.h - - - - Class for reading parameters from a config (.cfg) file - - - - Written by Greg Porreca, 03-22-2006 - - - - Revised - - - - - - This software may be used, modified, and distributed freely, but this - - header may not be modified and must appear at the top of this file. - - - - - *****************************************************************************/ #ifndef CONFIGREADER_H #define CONFIGREADER_H #include //input and output functionality #include #include class Config_reader{ public: Config_reader(); Config_reader(char *); ~Config_reader(); int Config_reader::getTag(char *tag_value, char *tag_name); private: char CFGFILENAME[500]; }; #endif