diff -r 594d59766373 -r 7d48bed6ce0c phonesrv_plat/cenrep_database_api/inc/cenrepdatabaseproperty.h --- a/phonesrv_plat/cenrep_database_api/inc/cenrepdatabaseproperty.h Thu Aug 19 10:28:14 2010 +0300 +++ b/phonesrv_plat/cenrep_database_api/inc/cenrepdatabaseproperty.h Tue Aug 31 15:45:17 2010 +0300 @@ -31,111 +31,111 @@ */ NONSHARABLE_CLASS( CCenRepDatabaseProperty ): public CBase { - public: // Constructor and destructor + public: // Constructor and destructor - /** - * Two-phased constructor. - */ - IMPORT_C static CCenRepDatabaseProperty* NewL(); + /** + * Two-phased constructor. + */ + IMPORT_C static CCenRepDatabaseProperty* NewL(); - /** - * Two-phased constructor. - */ - IMPORT_C static CCenRepDatabaseProperty* NewLC(); + /** + * Two-phased constructor. + */ + IMPORT_C static CCenRepDatabaseProperty* NewLC(); - /** - * Destructors. - */ - IMPORT_C virtual ~CCenRepDatabaseProperty(); + /** + * Destructors. + */ + IMPORT_C virtual ~CCenRepDatabaseProperty(); - public: // member functions - /** - * Returns the name of this property - * - * @since S60 V3.2 - * @return Name of property - */ - IMPORT_C TUint32 GetName() const; + public: // member functions + /** + * Returns the name of this property + * + * @since S60 V3.2 + * @return Name of property + */ + IMPORT_C TUint32 GetName() const; - /** - * Sets the name for this property - * - * @since S60 V3.2 - * @param aPropertyname new property name - */ - IMPORT_C void SetName( TUint32 aPropertyname ); + /** + * Sets the name for this property + * + * @since S60 V3.2 + * @param aPropertyname new property name + */ + IMPORT_C void SetName( TUint32 aPropertyname ); - /** - * Returns value of property - * - * @since S60 V3.2 - * @param aValue on return, TInt value - * @return Error code - */ - IMPORT_C TInt GetValue( TInt& aValue ) const; + /** + * Returns value of property + * + * @since S60 V3.2 + * @param aValue on return, TInt value + * @return Error code + */ + IMPORT_C TInt GetValue( TInt& aValue ) const; - /** - * Sets value of property. Value must match to datatype. - * - * @since S60 V3.2 - * @param aValue new TInt value to be set - * @return Error code - */ - IMPORT_C TInt SetValue( TInt aValue ); + /** + * Sets value of property. Value must match to datatype. + * + * @since S60 V3.2 + * @param aValue new TInt value to be set + * @return Error code + */ + IMPORT_C TInt SetValue( TInt aValue ); - /** - * Returns value of property - * - * @since S60 V3.2 - * @param aValue on return, descriptor value - * @return Error code - */ - IMPORT_C const TDesC& GetDesValue() const; + /** + * Returns value of property + * + * @since S60 V3.2 + * @param aValue on return, descriptor value + * @return Error code + */ + IMPORT_C const TDesC& GetDesValue() const; - /** - * Sets the value of property. Value must match to datatype. - * - * @since S60 V3.2 - * @param aValue new descriptor - * @return Error code - */ - IMPORT_C TInt SetValue( const TDesC& aValue ); + /** + * Sets the value of property. Value must match to datatype. + * + * @since S60 V3.2 + * @param aValue new descriptor + * @return Error code + */ + IMPORT_C TInt SetValue( const TDesC& aValue ); - /** - * Compares data of this property to another. - * - * @since S60 V3.2 - * @param aProperty property to be compared - * @return ETrue if properties have same data - */ - IMPORT_C TBool CCenRepDatabaseProperty::operator==( - const CCenRepDatabaseProperty& aProperty ) const; + /** + * Compares data of this property to another. + * + * @since S60 V3.2 + * @param aProperty property to be compared + * @return ETrue if properties have same data + */ + IMPORT_C TBool CCenRepDatabaseProperty::operator==( + const CCenRepDatabaseProperty& aProperty ) const; - private: + private: - /** - * C++ default constructor. - */ - CCenRepDatabaseProperty(); - - /** - * By default Symbian 2nd phase constructor is private. - */ - void ConstructL(); + /** + * C++ default constructor. + */ + CCenRepDatabaseProperty(); + + /** + * By default Symbian 2nd phase constructor is private. + */ + void ConstructL(); - private: // data + private: // data - /** - * Descriptor of property value - * Own. - */ - RBuf iPropertyValue; + /** + * Descriptor of property value + * Own. + */ + RBuf iPropertyValue; - /** - * Name of property - */ - TUint32 iPropertyName; + /** + * Name of property + */ + TUint32 iPropertyName; private: // For testing