summaryrefslogtreecommitdiff
path: root/ACE/TAO/orbsvcs/PSS/PSDL_Extern.h
blob: 9ee62e240d060444c4300c8fe5e90664695d080b (plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/* -*- C++ -*- */
// $Id$
//
// ==================================================================
//
// = LIBRARY
//    PSS
//
// = FILENAME
//    PSDL_Extern
//
// = DESCRIPTION
//    Wrapper to make available yacc/lex related parameters outside
//    the PSDL library.
//
// = AUTHOR
//    Priyanka Gontla <gontla_p@ociweb.com>
//
// ==================================================================

#ifndef TAO_PSDL_EXTERN_H
#define TAO_PSDL_EXTERN_H
#include /**/ "ace/pre.h"

#include "psdl_export.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

#include "ace/FILE.h"

//Forward declaration
class TAO_PSDL_Node;

class TAO_PSDL_Export TAO_PSDL_Extern
{
public:

  TAO_PSDL_Extern (void);

  int TAO_PSDL_Extern_yyparse (void *);

  void TAO_PSDL_Extern_yyin (FILE *);

  TAO_PSDL_Node *TAO_PSDL_Extern_yyval (void);
};

#include /**/ "ace/post.h"
#endif /* TAO_PSDL_EXTERN_H */