You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
242 B
17 lines
242 B
8 years ago
|
|
||
7 years ago
|
#include "qItemA.hpp"
|
||
|
#include "qItemB.hpp"
|
||
|
#include "qItemC.hpp"
|
||
|
#include "qItemD.hpp"
|
||
8 years ago
|
|
||
|
int main(int, char**)
|
||
|
{
|
||
|
QItemA itemA;
|
||
7 years ago
|
QItemB itemB;
|
||
|
QItemC itemC;
|
||
|
QItemD itemD;
|
||
8 years ago
|
|
||
|
// Fails to link if the symbol is not present.
|
||
|
return 0;
|
||
|
}
|