#include <Mda/Common/Base.h>
class TMdaPackage : public TMdaRawPackage, public TMdaRawPackage |
Public Member Functions | |
---|---|
void | SetUid(TUid) |
TUid | Type() |
TUid | Uid() |
TBool | operator==(const TMdaPackage &) |
Protected Member Functions | |
---|---|
TMdaPackage(TUid, TUid, TInt) |
Inherited Attributes | |
---|---|
TMdaRawPackage::iThis |
Inherited Functions | |
---|---|
TMdaRawPackage::Package() | |
TMdaRawPackage::Package()const | |
TMdaRawPackage::SetSize(TInt) | |
TMdaRawPackage::TMdaRawPackage(TInt) |
Deprecated
A data structure used to package messages (that include the package type) sent between the media server and its clients.
This class is abstract. It defines the attributes common to packages where the derived class's type needs to be sent as part of the package. The attributes are a UID that identifies the package's concrete class (so that the server can construct objects of the correct type), and a UID that identifies the package type (the category of classes to which the package belongs). The package type is little used in practice. These attributes and the derived class's size are set during construction of the derived class.
Deprecated
A data structure used to package messages (that include the package type) sent between the media server and its clients.
This class is abstract. It defines the attributes common to packages where the derived class's type needs to be sent as part of the package. The attributes are a UID that identifies the package's concrete class (so that the server can construct objects of the correct type), and a UID that identifies the package type (the category of classes to which the package belongs). The package type is little used in practice. These attributes and the derived class's size are set during construction of the derived class.
Protected constructor with two UIDs and the size of the derived class.
Parameters | |
---|---|
aType | A UID that identifies the package's concrete class. |
aUid | A UID that identifies the package type. This may be KNullUid if not required. |
aDerivedSize | The size of the derived class. |
void | SetUid | ( | TUid | aUid | ) | [inline] |
TUid | Type | ( | ) | const [inline] |
Gets the package type. This is set during construction of the derived class.
TUid | Uid | ( | ) | const [inline] |
Gets the derived class's type. This is set during construction of the derived class.
TBool | operator== | ( | const TMdaPackage & | aPackage | ) | [inline] |
Equality operator. Tests whether the package specified has the same UID and type as this package.
Parameters | |
---|---|
aPackage | The package to compare with this one. |