~ubuntu-branches/ubuntu/oneiric/yacas/oneiric

« back to all changes in this revision

Viewing changes to src/elfdll.h

  • Committer: Bazaar Package Importer
  • Author(s): Gopal Narayanan
  • Date: 2002-04-23 13:50:51 UTC
  • Revision ID: james.westby@ubuntu.com-20020423135051-bbd6ov4orr8eufmw
Tags: upstream-1.0.51
ImportĀ upstreamĀ versionĀ 1.0.51

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
#ifndef __elfdll_h__
 
3
#define __elfdll_h__
 
4
 
 
5
#include "yacasbase.h"
 
6
#include "lispplugin.h"
 
7
 
 
8
class ElfDll : public LispDllBase
 
9
{
 
10
public:
 
11
    ElfDll() : handle(NULL) {}
 
12
    virtual ~ElfDll();
 
13
    virtual LispInt Open(LispCharPtr aDllFile,LispEnvironment& aEnvironment);
 
14
    virtual LispInt Close(LispEnvironment& aEnvironment);
 
15
protected:
 
16
    virtual LispPluginBase* GetPlugin(void);
 
17
private:
 
18
    void *handle;
 
19
};
 
20
 
 
21
#endif