00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef OMNIIFR__TYPEDEFDEF_H
00024 #define OMNIIFR__TYPEDEFDEF_H
00025
00026 #ifdef HAVE_CONFIG_H
00027 # include "config.h"
00028 #endif
00029
00030 #ifdef HAVE_IOSTREAM
00031 # include <iostream>
00032 #else
00033 # include <iostream.h>
00034 #endif
00035
00036 #ifdef HAVE_STD_IOSTREAM
00037 using namespace std;
00038 #endif
00039
00040 #include "idltype.h"
00041 #include "Contained.h"
00042
00046 #define CASE_TYPEDEF \
00047 case dk_Typedef: \
00048 cerr<<"WARNING: kind==dk_Typedef. This should be impossible."<<endl; \
00049 case dk_Union: \
00050 case dk_Alias: \
00051 case dk_Enum: \
00052 case dk_Native: \
00053 case dk_Struct:
00054
00055 namespace Omniifr {
00056
00057 class TypedefDef_impl :
00058 public virtual POA_CORBA::TypedefDef,
00059 public Contained_impl,
00060 public IDLType_impl
00061 {
00062 public:
00063 CORBA::Contained::Description* describe();
00064
00065 public:
00066 TypedefDef_impl() {}
00067 virtual ~TypedefDef_impl() {}
00068 };
00069
00070 }
00071
00072 #endif // OMNIIFR__TYPEDEFDEF_H