C/C++
cpro0803.txt
Associated article: The End of a Beautiful Friendship
Tags: C/C++
Published source code accompanying the article by Al Stevens in which he examines C++'s export keyword.
C Programming Column by Al Stevens Example 1: #ifndef DOIT_H export template <class T> void doit(const T* ar); #endif Example 2: #include <iostream> #include "doit.h" export template <class T> void doit(...


