1
      2
      3
      4
      5
      6
      7
      8
      9
     10
     11
     12
     13
     14
     15
     16
     17
     18
     19
     20
     21
     22
     23
     24
     25
#include "foo.hpp"
#include <iostream>

class FooHallo
    : public Foo
{
    public:

        void
        msg() const
        {
            std::cout << "Hallo!" << std::endl;
        }
};

// support dynamic loading
extern "C" {

Foo*
construct()
{
    return new FooHallo();
}

// extern "C"