00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 
00011 
00012 
00013 
00014 
00015 
00016 #ifndef COH_ABSTRACT_POF_PATH_HPP
00017 #define COH_ABSTRACT_POF_PATH_HPP
00018 
00019 #include "coherence/lang.ns"
00020 
00021 #include "coherence/io/pof/PofReader.hpp"
00022 #include "coherence/io/pof/PofWriter.hpp"
00023 #include "coherence/io/pof/PortableObject.hpp"
00024 #include "coherence/io/pof/reflect/PofNavigator.hpp"
00025 #include "coherence/io/pof/reflect/PofValue.hpp"
00026 
00027 COH_OPEN_NAMESPACE4(coherence,io,pof,reflect)
00028 
00029 using coherence::io::pof::PofReader;
00030 using coherence::io::pof::PofWriter;
00031 
00032 
00033 
00034 
00035 
00036 
00037 
00038 
00039 
00040 class COH_EXPORT AbstractPofPath
00041     : public abstract_spec<AbstractPofPath,
00042         extends<Object>,
00043         implements<PofNavigator, PortableObject> >
00044     {
00045     
00046 
00047     public:
00048 
00049 
00050 
00051         virtual PofValue::Handle navigate(PofValue::Handle hValueOrigin) const;
00052 
00053 
00054     
00055 
00056     protected:
00057 
00058 
00059 
00060 
00061 
00062         virtual Array<int32_t>::View getPathElements() const = 0;
00063     };
00064 
00065 COH_CLOSE_NAMESPACE4
00066 
00067 #endif // COH_ABSTRACT_POF_PATH_HPP