blob: 73dafae63a9b2e02312ac4a65682ac88c6870eec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef TESTSHAREDLIBDEPENDS_H
#define TESTSHAREDLIBDEPENDS_H
#include "renamed.h"
#include "testSharedLibRequired.h"
#include "testsharedlibdepends_export.h"
struct TESTSHAREDLIBDEPENDS_EXPORT TestSharedLibDepends
{
int foo();
};
#endif
|