Morfeusz.cpp
360 Bytes
#include <string>
#include "morfeusz2.h"
#include "MorfeuszImpl.hpp"
namespace morfeusz {
using namespace std;
string Morfeusz::getVersion() {
static string version = MORFEUSZ2_VERSION;
return version;
}
Morfeusz* Morfeusz::createInstance() {
return new MorfeuszImpl();
}
Morfeusz::~Morfeusz() {
}
}