mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
8283e978f8
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3803 a592a061-630c-0410-9148-cb99ea01b6c8
48 lines
676 B
C++
48 lines
676 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file Thesaurus.h
|
|
* Copyright 2001 the LyX Team
|
|
* Read the file COPYING
|
|
*
|
|
* \author John Levon
|
|
*/
|
|
|
|
#ifndef THESAURUS_H
|
|
#define THESAURUS_H
|
|
|
|
#include <vector>
|
|
#include <map>
|
|
|
|
#include "LString.h"
|
|
#ifdef HAVE_LIBAIKSAURUS
|
|
#include "Aiksaurus.h"
|
|
#endif
|
|
|
|
/**
|
|
* This class provides an interface to whatever thesauri we might support.
|
|
*/
|
|
|
|
class Thesaurus {
|
|
public:
|
|
///
|
|
Thesaurus();
|
|
///
|
|
~Thesaurus();
|
|
|
|
typedef std::map<string, std::vector<string> > Meanings;
|
|
|
|
/**
|
|
* look up some text in the thesaurus
|
|
*/
|
|
Meanings lookup(string const & text);
|
|
|
|
private:
|
|
#ifdef HAVE_LIBAIKSAURUS
|
|
Aiksaurus * aik_;
|
|
#endif
|
|
};
|
|
|
|
extern Thesaurus thesaurus;
|
|
|
|
#endif
|