gloox 1.0
|
This is an abstraction of a jabber:x:signed namespace element, as used in XEP-0027 (Current Jabber OpenPGP Usage). More...
#include <gpgsigned.h>
Public Member Functions | |
GPGSigned (const std::string &signature) | |
GPGSigned (const Tag *tag) | |
virtual | ~GPGSigned () |
const std::string & | signature () const |
virtual const std::string & | filterString () const |
virtual StanzaExtension * | newInstance (const Tag *tag) const |
Tag * | tag () const |
virtual StanzaExtension * | clone () const |
This is an abstraction of a jabber:x:signed namespace element, as used in XEP-0027 (Current Jabber OpenPGP Usage).
This class does not sign or verify any stanza content. It's meant to be an abstraction of the XML representation only.
XEP version: 1.3
Definition at line 38 of file gpgsigned.h.
build buildd gloox src gpgsigned cpp GPGSigned | ( | const std::string & | signature | ) |
Constructs a new object with the given signature.
signature | The signature. |
Definition at line 21 of file gpgsigned.cpp.
~GPGSigned | ( | ) | [virtual] |
Virtual destructor.
Definition at line 40 of file gpgsigned.cpp.
virtual StanzaExtension* clone | ( | ) | const [inline, virtual] |
Returns an identical copy of the current StanzaExtension.
Implements StanzaExtension.
Definition at line 78 of file gpgsigned.h.
const std::string & filterString | ( | ) | const [virtual] |
Returns an XPath expression that describes a path to child elements of a stanza that an extension handles.
Implements StanzaExtension.
Definition at line 44 of file gpgsigned.cpp.
virtual StanzaExtension* newInstance | ( | const Tag * | tag | ) | const [inline, virtual] |
Returns a new Instance of the derived type. Usually, for a derived class FooExtension, the implementation of this function looks like:
StanzaExtension* FooExtension::newInstance( const Tag* tag ) const { return new FooExtension( tag ); }
Implements StanzaExtension.
Definition at line 69 of file gpgsigned.h.
const std::string& signature | ( | ) | const [inline] |
Tag * tag | ( | ) | const [virtual] |
Returns a Tag representation of the extension.
Implements StanzaExtension.
Definition at line 52 of file gpgsigned.cpp.