Merge branch 'master' of git://repo.or.cz/ozulis
[ozulis.git] / src / target-data-factory.hh
blob464de19950647f2c593b139ac8c6626a5e22981d
1 #ifndef TARGET_DATA_FACTORY_HH
2 # define TARGET_DATA_FACTORY_HH
4 class TargetData;
6 class TargetDataFactory
8 public:
9 static const TargetData * native();
10 static const TargetData * amd64();
11 static const TargetData * x86();
14 #endif /* !TARGET_DATA_FACTORY_HH */