1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
#ifndef INCLUDED_CLASSES_
#define INCLUDED_CLASSES_
#include "../support/support.h"
class Options;
class Classes: public Support
{
Options const &d_options;
StringSet d_files; // all .ih or .rh files
public:
Classes(Options const &options);
StringSet const &readClasses(); // determine the files fm CLASSES
// Options const &options() const;
private:
void add(std::string const &line, std::string const &extension); // 1
void add(std::string const &extension); // 2
};
//#include "classes.f"
#endif
|