>>>>> "christian" == christian void <[EMAIL PROTECTED]> writes:

    christian> are you using any pragmas to control what is being
    christian> included and when? i.e.  to check and see if x.h is
    christian> already included from some other source?

If you mean include guards, like

#ifndef _PARSERINTERFACE_H
#define _PARSERINTERFACE_H

 ... header stuff here ...

#endif

then, yes; otherwise, no.

John

_______________________________________________
Bits mailing list
[EMAIL PROTECTED]
http://www.sugoi.org/mailman/listinfo/bits

Reply via email to