|
||
class CX509IPSubnetMask : public CBase;
An IP subnet mask.
Input data is parsed into an 8-bit base address and an 8-bit mask.
CBase
-
Base class for all classes to be instantiated on the heap.
CX509IPSubnetMask
- An IP subnet mask.
Defined in CX509IPSubnetMask
:
BaseAddress()const
Gets the base IP address.Mask()const
Gets the subnet mask.NewL(const TDesC8 &)
Creates an IP subnet mask object from the specified buffer containing the binary...NewLC(const TDesC8 &)
Creates an IP subnet mask object from the specified buffer containing the binary...~CX509IPSubnetMask()
Destructor.Inherited from CBase
:
Delete(CBase *)
Deletes the specified object.Extension_(TUint,TAny *&,TAny *)
Extension function operator new(TUint)
Allocates the object from the heap and then initialises its contents to binary z...operator new(TUint,TAny *)
Initialises the object to binary zeroes.operator new(TUint,TLeave)
Allocates the object from the heap and then initialises its contents to binary z...operator new(TUint,TLeave,TUint)
Allocates the object from the heap and then initialises its contents to binary z...operator new(TUint,TUint)
Allocates the object from the heap and then initialises its contents to binary z...IMPORT_C static CX509IPSubnetMask* NewL(const TDesC8 &aBinaryData);
Creates an IP subnet mask object from the specified buffer containing the binary coded representation.
The data is parsed into an 8-bit base address and an 8-bit mask.
|
|
IMPORT_C static CX509IPSubnetMask* NewLC(const TDesC8 &aBinaryData);
Creates an IP subnet mask object from the specified buffer containing the binary coded representation, and puts a pointer to it onto the cleanup stack.
The data is parsed into an 8-bit base address and an 8-bit mask.
|
|
IMPORT_C ~CX509IPSubnetMask();
Destructor.
Frees all resources owned by the object, prior to its destruction.
IMPORT_C TPtrC8 BaseAddress() const;
Gets the base IP address.
|
IMPORT_C TPtrC8 Mask() const;
Gets the subnet mask.
|