// // Programmer: Craig Stuart Sapp // Creation Date: Wed Oct 18 12:10:32 PDT 2000 // Last Modified: Wed Oct 18 12:10:35 PDT 2000 // Filename: ...sig/examples/all/eicheck.cpp // Web Address: http://sig.sapp.org/examples/museinfo/humdrum/eicheck.cpp // Syntax: C++; museinfo // // Description: Identifies exclusive interpretation spine memberships. // #include "humdrum.h" #ifndef OLDCPP #include #else #include #endif // function declarations void checkOptions (Options& opts, int argc, char* argv[]); void example (void); void printEIAnalysis (HumdrumFile& infile); void usage (const char* command); // global variables Options options; // database for command-line arguments /////////////////////////////////////////////////////////////////////////// int main(int argc, char* argv[]) { HumdrumFile infile; // process the command-line options checkOptions(options, argc, argv); // figure out the number of input files to process int numinputs = options.getArgCount(); for (int i=0; i