blob: 0c56545c990f4b24d096f7529e9df91eb66a3469 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#pragma once
#ifdef __APPLE__
#include "osx/IndexRecord.h"
#elif defined(_WIN32)
#include "win/IndexRecord.h"
#elif defined(__ANDROID__)
#include "android/IndexRecord.h"
#endif
|