lyx_mirror/src/Thesaurus.h
John Levon 6f2c9fd6b2 Aiksaurus 1.0 support
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7345 a592a061-630c-0410-9148-cb99ea01b6c8
2003-07-22 15:23:35 +00:00

48 lines
683 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_LOCATION
#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