C and C++

Moderators: None (Apply to moderate this forum)
Number of threads: 28695
Number of posts: 94715

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
accessing c++ objects within c. linking error. Posted by peterpan66 on 13 Feb 2013 at 1:04 AM
Hello everybody,
My goal is accessing c++ objects within c by using wrapper and externals. To get the pointer to the c++ object I use a type "void *".
But i get an error while linking: undefined reference to "create_mycpp".

Does anybody has an idea what the problem is? Or should I take an other way to access c++ objects?


//-------------------------------------
//mycpp.cpp
#include "mycpp.h"
Mycpp::void func(int i)
{
	i += 1;
}

//-------------------------------------
//mycpp.h
#ifndef MYCPP_H
#define MYCPP_H
#endif
class Mycpp {
	public:
		void func(int);
}

//-------------------------------------
//mywrapper.h
#ifndef MYWRAPPER_H
#define MYWRAPPER_H
#endif
typedef void * tMYCPP;
tMYCPP create_mycpp();
void mycpp_func(tMYCPP, int);

//-------------------------------------
//mywrapper.cpp
#include "mywrapper.h"
#include "mycpp.h"
#ifdef __cplusplus
extern "C" {
	void * create_mycpp() {
		return (tMYCPP)new Mycpp();
	}
	void mycpp_func(void * _mycpp, int _value) {
		((Mycpp*) _mycpp)->func(_value);
	}
}
#endif

//-------------------------------------
//main.c
#include "mywrapper.h"
tMYCPP aCpp = create_mycpp();
mycpp_func(aCpp, 2);

//-------------------------------------




 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.