summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/include/ast_component.h
blob: f69f159a6514a9b3eb1a12339f17ebff3939d154 (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
// This may look like C, but it's really -*- C++ -*-
// $Id$

#ifndef _AST_INTERFACE_AST_COMPONENT_HH
#define _AST_INTERFACE_AST_COMPONENT_HH

#include "ast_interface.h"

class TAO_IDL_FE_Export AST_Component : public virtual AST_Interface
{
public:
  AST_Component (void);

  AST_Component (UTL_ScopedName *n,
                 AST_Component *parent,
                 AST_Interface **supports,
                 long n_supports,
                 AST_Interface **supports_flat,
                 long n_supports_flat);

  virtual ~AST_Component (void);

  AST_Component *parent (void);

private:
  AST_Component *parent_;
};

#endif // _AST_INTERFACE_AST_COMPONENT_HH