#include <windows.h>
#include "tmpldll.hpp"

int main(void)
{
    TmplDerived<int> d;
    d.BaseMethod();

    SimpleDerived s;
    s.BaseMethod();

    return 0;
}