473,624 Members | 2,408 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

None line Non pure Virtual Function error

4 New Member
Hi,

While compiling my source through make file, I recieve the below error:

__RTTI__1nJTPro perty4nJRWCStri ng___ ../../../commonServices/lib/libCommonServic es.a(ConfigFaci lity.o)
void RW_PMapAssoc<st d::map<RWCStrin g*,SQLDataSourc e*,rw_deref_com pare<std::less< RWCString>,RWCS tring>,std::all ocator<SQLDataS ource*> >,RWTPtrMap<RWC String,SQLDataS ource,std::less <RWCString>,std ::allocator<SQL DataSource*> >,RWCString,SQL DataSource,std: :less<RWCString > >::clearAndDest roy() ../../../commonServices/lib/libCommonServic es.a(DBAdapter. o)
rw_slist<RWCStr ing,std::alloca tor<RWCString> >::rw_slist #Nvariant 1() ../../../commonServices/lib/libCommonServic es.a(PropertyGr oup.o)
rw_slist<RWCStr ing,std::alloca tor<RWCString> >::~rw_slist #Nvariant 1() ../../../commonServices/lib/libCommonServic es.a(PropertyGr oup.o)
rw_slist<RWCStr ing,std::alloca tor<RWCString> >&RW_VBase<rw_s list<RWCString, std::allocator< RWCString> >,RWTValSlist<R WCString,std::a llocator<RWCStr ing> > >::std() ../../../commonServices/lib/libCommonServic es.a(ConfigPars er.o)
const std::vector<Rea ctorEvent>&RW_V Base<std::vecto r<ReactorEvent> ,RWTValSortedVe ctor<ReactorEve nt,std::less<Re actorEvent>,std ::allocator<Rea ctorEvent> > >::std()const ../../../libCommon/lib/libCommon.a(Rea ctor.o)
__rwstd::__rb_t ree<RWCString*, std::pair<RWCSt ring*const,Abst ractProperty*>, __rwstd::__sele ct1st<std::pair <RWCString*cons t,AbstractPrope rty*>,RWCString *>,rw_deref_com pare<std::less< RWCString>,RWCS tring>,std::all ocator<Abstract Property*> >::iterator __rwstd::__rb_t ree<RWCString*, std::pair<RWCSt ring*const,Abst ractProperty*>, __rwstd::__sele ct1st<std::pair <RWCString*cons t,AbstractPrope rty*>,RWCString *>,rw_deref_com pare<std::less< RWCString>,RWCS tring>,std::all ocator<Abstract Property*> >::erase(__rwst d::__rb_tree<RW CString*,std::p air<RWCString*c onst,AbstractPr operty*>,__rwst d::__select1st< std::pair<RWCSt ring*const,Abst ractProperty*>, RWCString*>,rw_ deref_compare<s td::less<RWCStr ing>,RWCString> ,std::allocator <AbstractProper ty*> >::iterator) ../../../commonServices/lib/libCommonServic es.a(ConfigFaci lity.o)
void std::__advance< std::list<RWTVa lVector<RWCStri ng> >::iterator,uns igned long>(__type_0& ,__type_1,std:: bidirectional_i terator_tag) ../../../libCommon/lib/libCommon.a(Con figFileReader.o )
void RW_PMapAssoc<st d::map<RWCStrin g*,DBAdapter*,r w_deref_compare <std::less<RWCS tring>,RWCStrin g>,std::allocat or<DBAdapter*> >,RWTPtrMap<RWC String,DBAdapte r,std::less<RWC String>,std::al locator<DBAdapt er*> >,RWCString,DBA dapter,std::les s<RWCString> >::clearAndDest roy() ../../../commonServices/lib/libCommonServic es.a(DBAdapterM anager.o)
RWDBConnection& rw_hashmap<int, RWDBConnection, DBAdapterManage r::NumberHash,D BAdapterManager ::NumberEqual,s td::allocator<i nt> >::operator[](const int&) ../../../commonServices/lib/libCommonServic es.a(DBAdapterM anager.o)
rw_slist<int,st d::allocator<in t> >::rw_slist #Nvariant 1() ../../../commonServices/lib/libCommonServic es.a(PropertyGr oup.o)
rw_slist<int,st d::allocator<in t> >::~rw_slist #Nvariant 1() ../../../commonServices/lib/libCommonServic es.a(PropertyGr oup.o)
__RTTI__1nJTPro perty4Ci__ ../../../commonServices/lib/libCommonServic es.a(ConfigFaci lity.o)
RWTFunctor0MImp <DBAdapterManag er,void>::__vtb l ../../../commonServices/lib/libCommonServic es.a(DBAdapterM anager.o)
[Hint: try checking whether the first non-inlined, non-pure virtual function of class RWTFunctor0MImp <DBAdapterManag er,void> is defined]

Request help on this issue

Regards,
hp
Feb 6 '09 #1
2 4068
newb16
687 Contributor
Hint: try checking whether the first non-inlined, non-pure virtual function of class RWTFunctor0MImp <DBAdapterManag er,void> is defined
Wow. It can issue hint now on this weird vtable link error. The hint is good - did you follow it?
Feb 6 '09 #2
JosAH
11,448 Recognized Expert MVP
I suspect that the OP didn't post the first part of this error message blabber ...

kind regards,

Jos
Feb 6 '09 #3

Sign in to post your reply or Sign up for a free account.

Similar topics

9
46581
by: Dario | last post by:
This is a technical C++ post regarding the Microsoft runtime error R6025 Pure Virtual Function Call that sometime occurs in programs compiled with Microsoft Visual C++ 6.0. Please consider the following simple illegal C++ program: class Listener { public: virtual void onEvent(int n) = 0;
11
4347
by: santosh | last post by:
Hello, I was going through the Marshal Cline's C++ FAQ-Lite. I have a doubt regarding section 33.10. Here he is declaring a pure virtual destructor in the base class. And again defining it inline. Like this.
37
4152
by: WittyGuy | last post by:
Hi, I wonder the necessity of constructor and destructor in a Abstract Class? Is it really needed? ? Wg http://www.gotw.ca/resources/clcm.htm for info about ]
10
2968
by: PengYu.UT | last post by:
Hi, A pure function is called in the base function constructor. It generate a run time error: "pure virtual method called". My problem is that class A have some derived classes. I want A's constructor change its behaviour accounting to the derived class. I tried to make A::fun() not pure virtual but virtual. It doesn't generate any error. But A::fun() is called in A's construction, while I
3
1556
by: Adriano Coser | last post by:
Hi. I'm declaring a property on a base class that is represented by a pure virtual function. Something like this: public: __declspec( property( get=GetWidth ) ) int Width; virtual int GetWidth() = 0; I'm implementing GetWidth in all subclasses, but I got the following linker error:
3
4587
by: Dmitry Prokoptsev | last post by:
Hello, I need to write a class for exceptions which can be thrown, caught, stored and thrown once again. I have written the following code: --- begin --- #include <string> class Exception { public:
10
4785
by: John Goche | last post by:
Hello, page 202 of Symbian OS Explained by Jo Stichbury states "All virtual functions, public, protected or private, should be exported" then page 203 states "In the rare cases where a pure virtual function body
10
2084
by: Rahul | last post by:
Hi, I tried to create a abstract class by having a non-virtual member function as pure, but i got a compilation error saying "only virtual member functions can be pure"... I'm trying to think the reason behind this restriction... i just want to want a base class to be abstract so as to avoid object slicing into the base type from derived type, and in my case base class doesn't need to have a virtual function.
13
7255
by: Mike -- Email Ignored | last post by:
Is a pure virtual function in allowed in a template base class? In any case, I have one working. Am I skating on thin ice? Thanks, Mike.
0
8625
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8336
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
6111
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5565
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4082
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4177
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2610
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1791
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1487
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.