00001
00002
00003
00004
00005
00006
00007 #ifndef COH_ABSTRACT_ANNOTATION_HPP
00008 #define COH_ABSTRACT_ANNOTATION_HPP
00009
00010 #include "coherence/lang/compatibility.hpp"
00011
00012 #include "coherence/lang/Annotation.hpp"
00013 #include "coherence/lang/Class.hpp"
00014
00015
00016 COH_OPEN_NAMESPACE3(coherence,lang,annotation)
00017
00018
00019
00020
00021
00022
00023
00024
00025 class COH_EXPORT AbstractAnnotation
00026 : public abstract_spec<AbstractAnnotation,
00027 extends<Object>,
00028 implements<Annotation> >
00029 {
00030
00031
00032 public:
00033
00034
00035
00036 virtual Class::View annotationType() const;
00037 };
00038
00039 COH_CLOSE_NAMESPACE3
00040
00041 #endif // COH_ABSTRACT_ANNOTATION_HPP