mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 18:24:02 +00:00
27 lines
399 B
C
27 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
|