Logo

GitLab

Sign in

SGJP / Morfeusz

  • Back to Group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
0614066c8f913753f7d5eb4df0c4a7bd72c9c81b
  • Morfeusz
  • morfeusz
  • Morfeusz.cpp
  • - praca nad nowym API (poprawki w programie commandlinowym, ...
    1d174433
    git-svn-id: svn://svn.nlp.ipipan.waw.pl/morfeusz/trunk@255 ff4e3ee1-f430-4e82-ade0-24591c43f1fd
    Michał Lenart authored
    11 years ago  
    Browse Code »
Morfeusz.cpp 439 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 24 25

#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(MorfeuszUsage usage) {
        return new MorfeuszImpl(usage);
    }

    Morfeusz::~Morfeusz() {

    }
    
    list<string> Morfeusz::dictionarySearchPaths;

}