Blame view

morfeusz/Morfeusz.cpp 385 Bytes
Michał Lenart authored
1
Michał Lenart authored
2
#include <string>
Michał Lenart authored
3
4
#include "morfeusz2.h"
#include "MorfeuszInternal.hpp"
Michał Lenart authored
5
#include "morfeusz2_version.h"
Michał Lenart authored
6
Michał Lenart authored
7
8
namespace morfeusz {
Michał Lenart authored
9
10
11
12
13
14
15
16
17
18
19
20
21
22
    using namespace std;

    string version() {
        static string version = MORFEUSZ_VERSION;
        return version;
    }

    Morfeusz* Morfeusz::createInstance() {
        return new MorfeuszInternal();
    }

    Morfeusz::~Morfeusz() {

    }
Michał Lenart authored
23
Michał Lenart authored
24
}