summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/AutoExportDll/hello.cxx
blob: 35ccbb78f949148ad79f2ca70f7032ec87992397 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include "hello.h"

#include <stdio.h>
int Hello::Data = 0;
void Hello::real()
{
  return;
}
void hello()
{
  printf("hello");
}
void Hello::operator delete[](void*){};
void Hello::operator delete(void*){};

#ifdef HELLO_VFTABLE
HelloVFTable::HelloVFTable()
{
}
HelloVFTable::~HelloVFTable()
{
}
#endif