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