00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef TAO_PSDL_EXTERN_H
00022 #define TAO_PSDL_EXTERN_H
00023 #include "ace/pre.h"
00024
00025 #include "psdl_export.h"
00026
00027 #if !defined (ACE_LACKS_PRAGMA_ONCE)
00028 # pragma once
00029 #endif
00030
00031 #include "ace/FILE.h"
00032
00033
00034 class TAO_PSDL_Node;
00035
00036 class TAO_PSDL_Export TAO_PSDL_Extern
00037 {
00038 public:
00039
00040 TAO_PSDL_Extern (void);
00041
00042 int TAO_PSDL_Extern_yyparse (void *);
00043
00044 void TAO_PSDL_Extern_yyin (FILE *);
00045
00046 TAO_PSDL_Node *TAO_PSDL_Extern_yyval (void);
00047 };
00048
00049 #include "ace/post.h"
00050 #endif