< Home

< Table of Contents

REFERENCE MANUAL

StringMetadata Class Reference

#include <sprk.h>

Inheritance diagram for StringMetadata:
Metadata Sprocket Object

Public Member Functions

UTF8 GetValue () const
 
Type ObjectType () const
 
StringMetadataoperator= (StringMetadata const &in_that)=default
 
StringMetadataoperator= (StringMetadata &&in_that)
 
void SetValue (char const *in_value)
 
 StringMetadata ()
 
 StringMetadata (Metadata const &in_that)
 
 StringMetadata (StringMetadata const &in_that)
 
 StringMetadata (StringMetadata &&in_that)
 
 StringMetadata (char const *in_name, char const *in_value)
 
- Public Member Functions inherited from Sprocket
 Sprocket (Sprocket &&in_that)
 
- Public Member Functions inherited from Object
virtual bool Empty () const
 
intptr_t GetClassID () const
 
intptr_t GetInstanceID () const
 
bool HasType (Type in_mask) const
 
 Object (Object &&in_that)
 
Objectoperator= (Object const &other_object)
 
Objectoperator= (Object &&in_that)
 
virtual void Reset ()
 
Type Type () const
 

Additional Inherited Members

- Public Types inherited from Sprocket
enum  UpdateType { Synchronous, Asynchronous }
 
- Static Public Member Functions inherited from Object
template<typename T >
static intptr_t ClassID ()
 

Detailed Description

The StringMetadata class is a smart pointer. It represents a piece of string Metadata.

Constructor & Destructor Documentation

StringMetadata::StringMetadata ( )

The default constructor creates an uninitialized StringMetadata object. The Type() function will return Type::None.

StringMetadata::StringMetadata ( Metadata const &  in_that)

This constructor creates a StringMetadata object that shares the underlying smart-pointer of the source Metadata. The copy will only be successful if the source component is really an upcast of a StringMetadata object. Otherwise the copy will fail and the resulting StringMetadata will be invalid.

Parameters
in_thatThe source Metadata to copy.
StringMetadata::StringMetadata ( StringMetadata const &  in_that)

The copy constructor creates a StringMetadata object that shares the underlying smart-pointer of the source StringMetadata.

Parameters
in_thatThe source StringMetadata to copy.
StringMetadata::StringMetadata ( StringMetadata &&  in_that)

The move constructor creates a StringMetadata by transferring the underlying object of the rvalue reference to this StringMetadata.

Parameters
in_thatAn rvalue reference to a StringMetadata to take the underlying object from.
StringMetadata::StringMetadata ( char const *  in_name,
char const *  in_value 
)

This constructor creates a StringMetadata with a given name and value.

Parameters
in_nameThe UTF8-encoded name for this StringMetadata.
in_valueThe UTF8-encoded string value for this StringMetadata.

Member Function Documentation

UTF8 StringMetadata::GetValue ( ) const

Gets the string value for this StringMetadata.

Returns
The string value for this StringMetadata.
Type StringMetadata::ObjectType ( ) const
inlinevirtual

This function returns the type the object, as declared. This does not necessarily give the true type of the underlying object.

Returns
The declared type of the object in question, which may differ from the true, underlying type.

Reimplemented from Metadata.

StringMetadata& StringMetadata::operator= ( StringMetadata &&  in_that)

The move assignment operator transfers the underlying object of the rvalue reference to this StringMetadata.

Parameters
in_thatAn rvalue reference to a StringMetadata to take the underlying object from.
Returns
A reference to this StringMetadata.
void StringMetadata::SetValue ( char const *  in_value)

Sets the string value for this StringMetadata.

Parameters
in_valueThe UTF8-encoded string value for this StringMetadata.

The documentation for this class was generated from the following file: