00001
00002
00003
00004
00005
00006
00007 #ifndef COH_INTERFACE_SPEC_HPP
00008 #define COH_INTERFACE_SPEC_HPP
00009
00010 #include "coherence/lang/compatibility.hpp"
00011
00012 #include "coherence/lang/lang_spec.hpp"
00013 #include "coherence/lang/Object.hpp"
00014 #include "coherence/lang/TypedHandle.hpp"
00015 #include "coherence/lang/TypedHolder.hpp"
00016
00017 COH_OPEN_NAMESPACE2(coherence,lang)
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050 template<class T, class I = implements<> >
00051 class interface_spec
00052 : public virtual Object, public virtual I::implements_chain
00053 {
00054 public:
00055
00056
00057
00058 typedef interface_spec this_spec;
00059
00060
00061
00062
00063 typedef TypedHandle<T> Handle;
00064
00065
00066
00067
00068 typedef TypedHandle<const T> View;
00069
00070
00071
00072
00073 typedef TypedHolder<T> Holder;
00074
00075
00076
00077
00078 typedef typename I::interface_1 interface_1;
00079 typedef typename I::interface_2 interface_2;
00080 typedef typename I::interface_3 interface_3;
00081 typedef typename I::interface_4 interface_4;
00082 typedef typename I::interface_5 interface_5;
00083 typedef typename I::interface_6 interface_6;
00084 typedef typename I::interface_7 interface_7;
00085 typedef typename I::interface_8 interface_8;
00086 typedef typename I::interface_9 interface_9;
00087 typedef typename I::interface_10 interface_10;
00088 typedef typename I::interface_11 interface_11;
00089 typedef typename I::interface_12 interface_12;
00090 typedef typename I::interface_13 interface_13;
00091 typedef typename I::interface_14 interface_14;
00092 typedef typename I::interface_15 interface_15;
00093 typedef typename I::interface_16 interface_16;
00094
00095 COH_GENERATE_CLASS_ID(T)
00096
00097 private:
00098
00099
00100
00101
00102
00103 static void create()
00104 {
00105 }
00106
00107
00108
00109
00110
00111
00112 typedef void super;
00113 };
00114
00115 COH_CLOSE_NAMESPACE2
00116
00117 #endif // COH_INTERFACE_SPEC_HPP