C++C++11C++14C++17Learn C++Templates

Learn To Export And Import Template Members From A DLL Or A Package In C++

Learn To Export And Import Template Members From A DLL Or A Package In C++

The ability to create and use Templates is one of the great features of modern C++. The declaration of a template function or template class needs to be sufficiently flexible to allow it to be used in either a dynamic link library (shared library) or an executable file. In this article, we will explain how to export and import a template member function from a DLL or package in C++ with an example that can be used by a professional C++ Developer Tool.

What is a template in C++?

A template is a very powerful statement in C++ which simply defines the operations of a class, a function, an alias or a variable and lets the user apply the same template on different data types in those template operations. Templates are similar to macros in C++ except the compiler checks the types used before the template is expanded.

How does a template in C++ work?

Here is an example of a function template that adds two a and b parameters of the T type:

for example, if a and b are int variables, this template can be used as below:

and in the next lines same template can be used for the x and y float variables as below too,

Templates are very useful, and they are the base of generic programming that allows writing code in a way that is independent of any particular type. A template is an entity which generates an ordinary type or a function at compile time based on arguments the user supplies for the template parameters.

What are the steps to export and import template members from a DLL or a package in C++?

The declaration of a template function or template class needs to be sufficiently flexible to allow it to be used in either a dynamic link library (shared library) or an executable file. The same template declaration should be available as an import and/or export, or without a modifier. To be completely flexible, the header file template declarations should not use __export or __import modifiers. This allows the user to apply the appropriate modifier at the point of instantiation depending on how the instantiation is to be used.

The following steps demonstrate exporting and importing of templates. The source code is organized in three files. Using the header file, code is generated in the dynamic link library.

  1. Exportable/Importable Template Declarations
    The header file contains all template class and template function declarations. An export/import version of the templates can be instantiated by defining the appropriate macro at compile time.
  2. Compiling Exportable Templates
    Write the source code for a dynamic link library. When compiled, this library has reusable export code for templates.
  3. Using ImportTemplates
    Now you can write a calling function that uses templates. This executable file is linked to the dynamic link library. Only objects that are not declared in the header file and which are instantiated in the main function cause the compiler to generate new code. Code for a newly instantiated object is written into main.obj file.

How to export and import template members from a DLL or a package in C++?

When you export a class that contains template member functions from a DLL or a package (using the __declspec(dllexport) directive or the PACKAGE macro, respectively), these members must be explicitly instantiated and exported. Otherwise, consumers of the exported class might run into unresolved external errors regarding the template member. For example we may have the following app invoking the bar member from a package and it may have an unresolved external error,

Here is a C++ app example (myapp.cpp) that requires X template,

In the above example when we try to invoke a method member, we may get an unresolved external as in the example below:

To resolve the error, we should explicitly instantiate and export the member template used by our application. We should add the following line to C++ codes of this DLL or package.

Is there a full example of how to export and import template members from a DLL or a package in C++?

If we continue to example above, we can explicitly instantiate and export the member template foo().

Here is a simple C++ package or DLL example (mypackage.cpp),

and here is a header example (mypackage.h) for the C++ package or DLL example above.

Both the .cpp and .h example above resides in a C++ package.

Then you can safely run your application. Here is a C++ app example (myapp.cpp) that requires the X template from this package:

If you need more details about Class Templates you can check this official docwiki

How To Sort C++ Vectors With stdsort Parallel Sorting the C++ Builder Logo

C++ Builder is the easiest and fastest C and C++ IDE for building simple or professional applications on the Windows, MacOS, iOS & Android operating systems. It is also easy for beginners to learn with its wide range of samples, tutorials, help files, and LSP support for code. RAD Studio’s C++ Builder version comes with the award-winning VCL framework for high-performance native Windows apps and the powerful FireMonkey (FMX) framework for cross-platform UIs.

There is a free C++ Builder Community Edition for students, beginners, and startups; it can be downloaded from here. For professional developers, there are Professional, Architect, or Enterprise versions of C++ Builder and there is a trial version you can download from here

Oh hi there 👋
It’s nice to meet you.

Sign up to receive awesome C++ content in your inbox, every day.

We don’t spam! Read our privacy policy for more info.

About author

Dr. Yilmaz Yoru has 35+ years of coding with more than 30+ programming languages, mostly C++ on Windows, Android, Mac-OS, iOS, Linux, and some other operating systems. He graduated and received his MSc and PhD degrees from the Department of Mechanical Engineering of Eskisehir Osmangazi University. He is the founder and CEO of ESENJA LLC Company. His interests are Programming, Thermodynamics, Fluid Mechanics, Artificial Intelligence, 2D & 3D Designs, and high-end innovations.
Related posts
Artificial Intelligence TechC++C++17C++20Learn C++

How To Create Simple Generative AI Code In C++

C++C++17Language FeatureLearn C++

How To Use The SVG Image Format With Skia In C++ Builder

C++C++17Language FeatureLearn C++

How To Use Skia Images in C++ Builder?

C++C++17Code SnippetGame DevelopmentLanguage FeatureLearn C++

What Is Skia In Modern C++?