blob: dfcb792bcb06ad439d7ded86204531707a7562ef [file] [log] [blame]
/* ------------------------------------------------------------------
* Copyright (C) 1998-2009 PacketVideo
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied.
* See the License for the specific language governing permissions
* and limitations under the License.
* -------------------------------------------------------------------
*/
#ifndef PV_CONFIG_INTERFACE_H_INCLUDED
#define PV_CONFIG_INTERFACE_H_INCLUDED
#include "oscl_base.h"
#include "oscl_vector.h"
/**
* Base interface for all configuration classes
*/
class PVConfigInterface
{
/**
* This command provides a list of UUIDs supported by this configuration object.
* The client can then check whether it also supports the interfaces
* implemented by the configuration object. If so, the client needs to call
* QueryInterface to retrieve the interface object of the specified UID.
*
* @param aUuids Output parameter to hold a vector containing the supported UUIDs
* @param aExactUuidsOnly Turns on/off the retrival of UUIDs with aMimeType as a base type
* @param aContextData Optional opaque data to be passed back to user with the command response
* @returns A unique command id for asynchronous completion
*/
virtual PVCommandId QueryUUID(Oscl_Vector<PVUUID>& aUuids, OsclAny* aContextData = NULL) = 0;
/**
* This command provides a pointer to the configuration interface of the specified UUID.
*
* @param aUuid The UUID of the desired interface
* @param aInterfacePtr Output pointer to the desired interface
* @param aContextData Optional opaque data to be passed back to user with the command response
* @returns A unique command id for asynchronous completion
*/
virtual PVCommandId QueryInterface(const PVUUID& aUuid,
PVInterfacePtr& aInterfacePtr,
OsclAny* aContextData = NULL) = 0;
}
#endif // PV_CONFIG_INTERFACE_H_INCLUDED