26 lines
660 B
C++
26 lines
660 B
C++
|
#ifndef __AUEXTENSIONV1_HPP
|
||
|
#define __AUEXTENSIONV1_HPP
|
||
|
|
||
|
#include "se/Extension.hpp"
|
||
|
|
||
|
/**
|
||
|
* A bundled set of constants representing the .au EPP extension
|
||
|
* schema. The namespace URI uniquely identifies the extension.
|
||
|
*/
|
||
|
class AuExtensionV1 : public Extension
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
/**
|
||
|
* Get the globally unique namespace URI which identifies this extension.
|
||
|
*/
|
||
|
virtual std::string& getURI() const;
|
||
|
/**
|
||
|
* Get the location hint for the XML schema used to validate EPP service
|
||
|
* element instances using this extension.
|
||
|
*/
|
||
|
virtual std::string& getSchemaLocation() const;
|
||
|
};
|
||
|
|
||
|
#endif // __AUEXTENSIONV1_HPP
|