#include <iostream>
#include <string>
#include <vector>
#include <map>
#include <fstream>
#include <sstream>
#include <stdlib.h>
#define MYFLT float |
#define PUBLIC |
void PUBLIC gatherArgs | ( | int | argc, | |
const char ** | argv, | |||
std::string & | commandLine | |||
) |
bool PUBLIC parseInstrument | ( | const std::string & | definition, | |
std::string & | preNumber, | |||
std::string & | id, | |||
std::string & | name, | |||
std::string & | postNumber | |||
) |
Returns true if definition is a valid Csound instrument definition block. Also returns the part before the instr number, the instr number, the name (all text after the first comment on the same line as the instr number), and the part after the instr number, all by reference.
void PUBLIC scatterArgs | ( | const std::string | commandLine, | |
std::vector< std::string > & | args, | |||
std::vector< char * > & | argv | |||
) |
std::string PUBLIC& trim | ( | std::string & | value | ) |
std::string PUBLIC& trimQuotes | ( | std::string & | value | ) |