00001 /* 00002 * Copyright (c) 2000, 2020, Oracle and/or its affiliates. 00003 * 00004 * Licensed under the Universal Permissive License v 1.0 as shown at 00005 * http://oss.oracle.com/licenses/upl. 00006 */ 00007 #ifndef COH_POF_VALUE_HPP 00008 #define COH_POF_VALUE_HPP 00009 00010 #include "coherence/lang.ns" 00011 00012 COH_OPEN_NAMESPACE4(coherence,io,pof,reflect) 00013 00014 00015 /** 00016 * PofValue represents the POF data structure in a POF stream, or any 00017 * sub-structure or value thereof. 00018 * 00019 * In C++ PofValue is simply a place-holder interface, see the corresponding 00020 * Java PofValue interface for details. 00021 * 00022 * @author as/gm 2009.04.01 00023 * @since Coherence 3.5 00024 */ 00025 class COH_EXPORT PofValue 00026 : public interface_spec<PofValue> 00027 { 00028 }; 00029 00030 COH_CLOSE_NAMESPACE4 00031 00032 #endif // COH_POF_VALUE_HPP