Logo

GitLab

Sign in

SGJP / Morfeusz

  • Back to Group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
bc6cb67e0ed02dffcb9ee5eef1dcae5398a0e6f6
  • Morfeusz
  • morfeusz
  • Morfeusz.cpp
  • - zmiana nazwy MorfeuszInternal --> MorfeuszImpl ...
    0d48140d
    git-svn-id: svn://svn.nlp.ipipan.waw.pl/morfeusz/trunk@247 ff4e3ee1-f430-4e82-ade0-24591c43f1fd
    Michał Lenart authored
    11 years ago  
    Browse File »
Morfeusz.cpp 360 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23

#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() {

    }

}