blob: 62d20c7fc0be52bccfe63c9702b0fdd31d530ead (
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
|
// -*- C++ -*-
//=============================================================================
/**
* @file ciaofwd.h
*
* $Id$
*
* Forward declare the basic types used in the CCM implementation to
* reduce interdependency. Regular users of CIAO should only include
* ciao/ciao.h.
*
* @author Nanbor Wang
*/
//=============================================================================
#ifndef CIAO_CIAOFWD_H
#define CIAO_CIAOFWD_H
#include /**/ "ace/pre.h"
#include "CIAO_Export.h"
#include "tao/corba.h"
namespace Components
{
};
#include /**/ "ace/post.h"
#endif /* CIAO_CIAOFWD_H */
|