File: classes.h

package info (click to toggle)
icmake 13.05.01-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,132 kB
  • sloc: cpp: 11,595; fortran: 883; makefile: 853; sh: 546; pascal: 342
file content (29 lines) | stat: -rw-r--r-- 621 bytes parent folder | download | duplicates (2)
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