/////////////////////////////////////////////////////////////////////////////// // Copyright (C) 2002-2025, Open Design Alliance (the "Alliance"). // All rights reserved. // // This software and its documentation and related materials are owned by // the Alliance. The software may only be incorporated into application // programs owned by members of the Alliance, subject to a signed // Membership Agreement and Supplemental Software License Agreement with the // Alliance. The structure and organization of this software are the valuable // trade secrets of the Alliance and its suppliers. The software is also // protected by copyright law and international treaty provisions. Application // programs incorporating this software must include the following statement // with their copyright notices: // // This application incorporates Open Design Alliance software pursuant to a license // agreement with Open Design Alliance. // Open Design Alliance Copyright (C) 2002-2025 by Open Design Alliance. // All rights reserved. // // By use of this software, its documentation or related materials, you // acknowledge and accept the above terms. /////////////////////////////////////////////////////////////////////////////// #ifndef _DAI_AGGR_UNORDERED_H #define _DAI_AGGR_UNORDERED_H #include "OdPlatformSettings.h" #include "OdaCommon.h" #include "daiAggr.h" #include "impl/daiAggrCommonInstance.h" #include "daiUtils/daiUnset.h" #include "daiError/daiException.h" #define STL_USING_ALGORITHM #include "OdaSTL.h" #include "TD_PackPush.h" namespace OdDAI { /** \details Template class for containers defined within a schema. */ class DAI_EXPORT AggrUnordered : public Aggr { public: /** \details Adds aggregate item. \param anItem [in] a OdRxValue to add to unordered aggregate. \returns True if added successfully; otherwise the method returns false. */ bool Add(const OdRxValue& anItem); /** \details Removes aggregate item. \param anItem [in] a OdRxValue to remove from unordered aggregate. \returns True if removed successfully; otherwise the method returns false. */ bool Remove(const OdRxValue& anItem); /** \details Template function adds typed item to unordered aggregate. \param anItem [in] a typed value to add to unordered aggregate. \returns True if added successfully; otherwise the method returns false. */ template bool Add(const TItem& anItem); // /** \details Template function removes typed item from unordered aggregate. \param anItem [in] a typed value to remove from unordered aggregate. \returns True if removed successfully; otherwise the method returns false. */ template bool Remove(const TItem& anItem); //DOM-IGNORE-BEGIN protected: AggrUnordered(AggrInstance* defaultInstance); ////DOM-IGNORE-END }; } #include "impl/daiAggrUnorderedInstance.hpp" //DOM-IGNORE-END #include "TD_PackPop.h" #endif // _DAI_AGGR_H