用于ocl :: CRException的Typeinfo

时间:2013-03-26 14:54:56

标签: c++ linux g++ exception-specification

我尝试使用g ++运行我的C ++程序,但是我遇到了以下异常: “wordinfo for ocl :: CRException”我正在使用包含CRException类的ocl名称空间..请帮帮我。

以下是包含OCL类的代码:

#ifndef VOIDSOFT_ADA2_LIND_HH

#define VOIDSOFT_ADA2_LIND_HH
#include <string>
#include <list>
#include <queue>
#include <map>
#include <ocl.h>
#include "threaded.hh"

using namespace std;
using namespace ocl;

class circuit;

class Lind: public Threaded 
{
public:
    typedef int lookup_t;

private:
    OraConnection connection;
    pthread_mutex_t *done_m;
    queue<pthread_t> *q;
    lookup_t type;

public:
    circuit *c;
    Lind();
    ~Lind();

    void *run();    

    map<string, pair<string, string> > *getnodes(string);

    bool connect();
    void disconnect();

private:
    circuit *getcircuitinfo(string, circuit *c = 0);               
    void bindInStr(OraQuery &q, string arg, string bindvar, map<string, string> *properties);

    map<string, pair<string, string> > *node2name(string);
};

/* Lookup types */
namespace LindLookupTypes {
    /* Get overlying */
    const int OL = 0x001;
    /* Get underlying */
    const int UL = 0x002;
}
#endif /* VOIDSOFT_ADA2_LIND_HH */

1 个答案:

答案 0 :(得分:0)

这通常意味着您忘记在某处定义(实现)虚拟方法。检查ocl::CRException的所有虚拟方法是否已定义,以及定义它们的目标文件是否实际链接到您的代码。

如果没有帮助,请编辑答案并向我们显示CRException的代码。