mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 07:00:19 +00:00
26 lines
399 B
C++
26 lines
399 B
C++
// Header.h
|
|
|
|
#ifndef HEADER_H
|
|
#define HEADER_H
|
|
|
|
#include "Symbol.h"
|
|
|
|
class Header
|
|
{
|
|
public:
|
|
std::string filename;
|
|
std::vector<std::string> includes, libc_includes, pragmas;
|
|
std::vector<Symbol*> symbols;
|
|
bool done, externc;
|
|
|
|
std::vector<std::string> ifs, ifspreproc;
|
|
|
|
Header ( const std::string& filename_ )
|
|
: filename(filename_)
|
|
{
|
|
done = false;
|
|
externc = false;
|
|
}
|
|
};
|
|
|
|
#endif//HEADER_H
|