DLL question

Started by
1 comment, last by Calin 18 years, 6 months ago
How can you place several classes in a single DLL file when you want to keep for each class a separate declaration and definition file? Until now I have been using a separate DLL file for each class:

// CameraInDLL.h
#ifndef CameraInDLL_H
#define CameraInDLL_H

#ifdef _CAMERAINDLL
	#define CAMERAINDLL_CLASS_DECL       __declspec(dllexport)
#else
	#define CAMERAINDLL_CLASS_DECL       __declspec(dllimport)
#endif

#endif // CameraInDLL_H


// class declaration file
//mldCamera.h

#include "CameraInDLL.h"


class CAMERAINDLL_CLASS_DECL MldCamera
{
//code removed



Any input is appreciated.

My project`s facebook page is “DreamLand Page”

Advertisement
Just compile them in the same DLL project.
Thank you.

My project`s facebook page is “DreamLand Page”

This topic is closed to new replies.

Advertisement