DRDE/ACTK1_0/se/LPE/LPExtension.hpp

30 lines
665 B
C++

#ifndef __LPEXTENSION_HPP
#define __LPEXTENSION_HPP
#include "se/Extension.hpp"
/**
* A bundled set of constants representing the .ae EPP extension
* schema. The namespace URI uniquely identifies the extension.
*/
class LPExtension : public Extension
{
public:
virtual ~LPExtension(void) { }
/**
* 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 // __LPEXTENSION_HPP