23 lines
365 B
C++
23 lines
365 B
C++
/*
|
|
* LPExtension.hpp
|
|
*
|
|
* Created on: Jan 24, 2014
|
|
* Author: jdaugherty
|
|
*/
|
|
|
|
#ifndef LPEXTENSION_HPP_
|
|
#define LPEXTENSION_HPP_
|
|
|
|
#include "se/Extension.hpp"
|
|
|
|
class LPExtension: public Extension {
|
|
public:
|
|
LPExtension();
|
|
virtual ~LPExtension();
|
|
|
|
std::string& getURI() const;
|
|
std::string& getSchemaLocation() const;
|
|
};
|
|
|
|
#endif /* LPEXTENSION_HPP_ */
|