├── .DS_Store ├── Include └── GeoUtils.h ├── README.md ├── cinderblock.xml ├── example.png └── samples ├── .DS_Store ├── assets └── map.jpg ├── include ├── .DS_Store └── Resources.h ├── resources └── CinderApp.icns ├── src └── GeoLocationUtilsApp.cpp └── xcode ├── .DS_Store ├── GeoLocationUtils.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── henrique.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings └── xcuserdata │ └── henrique.xcuserdatad │ └── xcschemes │ ├── GeoLocationUtils.xcscheme │ └── xcschememanagement.plist ├── GeoLocationUtils_Prefix.pch ├── Info.plist └── build ├── Debug └── GeoLocationUtils.app │ └── Contents │ ├── Info.plist │ ├── MacOS │ └── GeoLocationUtils │ ├── PkgInfo │ └── Resources │ └── CinderApp.icns ├── GeoLocationUtils.build └── Debug │ └── GeoLocationUtils.build │ ├── GeoLocationUtils-all-non-framework-target-headers.hmap │ ├── GeoLocationUtils-all-target-headers.hmap │ ├── GeoLocationUtils-generated-files.hmap │ ├── GeoLocationUtils-own-target-headers.hmap │ ├── GeoLocationUtils-project-headers.hmap │ ├── GeoLocationUtils.hmap │ ├── Objects-normal │ └── x86_64 │ │ ├── GeoLocationUtils.LinkFileList │ │ ├── GeoLocationUtilsApp.d │ │ ├── GeoLocationUtilsApp.dia │ │ ├── GeoLocationUtilsApp.o │ │ └── GeoLocationUtils_dependency_info.dat │ ├── dgph │ └── dgph~ └── SharedPrecompiledHeaders ├── GeoLocationUtils_Prefix-adreoywfwlsbnsarjiysqnfacnnw ├── GeoLocationUtils_Prefix.pch.d ├── GeoLocationUtils_Prefix.pch.data ├── GeoLocationUtils_Prefix.pch.dia ├── GeoLocationUtils_Prefix.pch.pch └── GeoLocationUtils_Prefix.pch.pch.hash-criteria ├── GeoLocationUtils_Prefix-bhlihenmzdfrkbaopqjvfpfijhts ├── GeoLocationUtils_Prefix.pch.d ├── GeoLocationUtils_Prefix.pch.data ├── GeoLocationUtils_Prefix.pch.dia ├── GeoLocationUtils_Prefix.pch.pch └── GeoLocationUtils_Prefix.pch.pch.hash-criteria ├── GeoLocationUtils_Prefix-bnmpnjpvnmznakgqwysgzbquveym ├── GeoLocationUtils_Prefix.pch.data ├── GeoLocationUtils_Prefix.pch.dia └── GeoLocationUtils_Prefix.pch.pch.hash-criteria ├── GeoLocationUtils_Prefix-cjbfzvwfeifcjsawymeqzqrlfahi └── GeoLocationUtils_Prefix.pch.pch.hash-criteria └── GeoLocationUtils_Prefix-eyhsfwxcoyuwqoarynkbyclkfnqj ├── GeoLocationUtils_Prefix.pch.d ├── GeoLocationUtils_Prefix.pch.data ├── GeoLocationUtils_Prefix.pch.dia ├── GeoLocationUtils_Prefix.pch.pch └── GeoLocationUtils_Prefix.pch.pch.hash-criteria /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/.DS_Store -------------------------------------------------------------------------------- /Include/GeoUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/Include/GeoUtils.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/README.md -------------------------------------------------------------------------------- /cinderblock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/cinderblock.xml -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/example.png -------------------------------------------------------------------------------- /samples/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/.DS_Store -------------------------------------------------------------------------------- /samples/assets/map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/assets/map.jpg -------------------------------------------------------------------------------- /samples/include/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/include/.DS_Store -------------------------------------------------------------------------------- /samples/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/include/Resources.h -------------------------------------------------------------------------------- /samples/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/resources/CinderApp.icns -------------------------------------------------------------------------------- /samples/src/GeoLocationUtilsApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/src/GeoLocationUtilsApp.cpp -------------------------------------------------------------------------------- /samples/xcode/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/.DS_Store -------------------------------------------------------------------------------- /samples/xcode/GeoLocationUtils.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/GeoLocationUtils.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/xcode/GeoLocationUtils.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/GeoLocationUtils.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /samples/xcode/GeoLocationUtils.xcodeproj/project.xcworkspace/xcuserdata/henrique.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/GeoLocationUtils.xcodeproj/project.xcworkspace/xcuserdata/henrique.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /samples/xcode/GeoLocationUtils.xcodeproj/project.xcworkspace/xcuserdata/henrique.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/GeoLocationUtils.xcodeproj/project.xcworkspace/xcuserdata/henrique.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /samples/xcode/GeoLocationUtils.xcodeproj/xcuserdata/henrique.xcuserdatad/xcschemes/GeoLocationUtils.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/GeoLocationUtils.xcodeproj/xcuserdata/henrique.xcuserdatad/xcschemes/GeoLocationUtils.xcscheme -------------------------------------------------------------------------------- /samples/xcode/GeoLocationUtils.xcodeproj/xcuserdata/henrique.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/GeoLocationUtils.xcodeproj/xcuserdata/henrique.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /samples/xcode/GeoLocationUtils_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/GeoLocationUtils_Prefix.pch -------------------------------------------------------------------------------- /samples/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/Info.plist -------------------------------------------------------------------------------- /samples/xcode/build/Debug/GeoLocationUtils.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/Debug/GeoLocationUtils.app/Contents/Info.plist -------------------------------------------------------------------------------- /samples/xcode/build/Debug/GeoLocationUtils.app/Contents/MacOS/GeoLocationUtils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/Debug/GeoLocationUtils.app/Contents/MacOS/GeoLocationUtils -------------------------------------------------------------------------------- /samples/xcode/build/Debug/GeoLocationUtils.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /samples/xcode/build/Debug/GeoLocationUtils.app/Contents/Resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/Debug/GeoLocationUtils.app/Contents/Resources/CinderApp.icns -------------------------------------------------------------------------------- /samples/xcode/build/GeoLocationUtils.build/Debug/GeoLocationUtils.build/GeoLocationUtils-all-non-framework-target-headers.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/GeoLocationUtils.build/Debug/GeoLocationUtils.build/GeoLocationUtils-all-non-framework-target-headers.hmap -------------------------------------------------------------------------------- /samples/xcode/build/GeoLocationUtils.build/Debug/GeoLocationUtils.build/GeoLocationUtils-all-target-headers.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/GeoLocationUtils.build/Debug/GeoLocationUtils.build/GeoLocationUtils-all-target-headers.hmap -------------------------------------------------------------------------------- /samples/xcode/build/GeoLocationUtils.build/Debug/GeoLocationUtils.build/GeoLocationUtils-generated-files.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/GeoLocationUtils.build/Debug/GeoLocationUtils.build/GeoLocationUtils-generated-files.hmap -------------------------------------------------------------------------------- /samples/xcode/build/GeoLocationUtils.build/Debug/GeoLocationUtils.build/GeoLocationUtils-own-target-headers.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/GeoLocationUtils.build/Debug/GeoLocationUtils.build/GeoLocationUtils-own-target-headers.hmap -------------------------------------------------------------------------------- /samples/xcode/build/GeoLocationUtils.build/Debug/GeoLocationUtils.build/GeoLocationUtils-project-headers.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/GeoLocationUtils.build/Debug/GeoLocationUtils.build/GeoLocationUtils-project-headers.hmap -------------------------------------------------------------------------------- /samples/xcode/build/GeoLocationUtils.build/Debug/GeoLocationUtils.build/GeoLocationUtils.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/GeoLocationUtils.build/Debug/GeoLocationUtils.build/GeoLocationUtils.hmap -------------------------------------------------------------------------------- /samples/xcode/build/GeoLocationUtils.build/Debug/GeoLocationUtils.build/Objects-normal/x86_64/GeoLocationUtils.LinkFileList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/GeoLocationUtils.build/Debug/GeoLocationUtils.build/Objects-normal/x86_64/GeoLocationUtils.LinkFileList -------------------------------------------------------------------------------- /samples/xcode/build/GeoLocationUtils.build/Debug/GeoLocationUtils.build/Objects-normal/x86_64/GeoLocationUtilsApp.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/GeoLocationUtils.build/Debug/GeoLocationUtils.build/Objects-normal/x86_64/GeoLocationUtilsApp.d -------------------------------------------------------------------------------- /samples/xcode/build/GeoLocationUtils.build/Debug/GeoLocationUtils.build/Objects-normal/x86_64/GeoLocationUtilsApp.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/GeoLocationUtils.build/Debug/GeoLocationUtils.build/Objects-normal/x86_64/GeoLocationUtilsApp.dia -------------------------------------------------------------------------------- /samples/xcode/build/GeoLocationUtils.build/Debug/GeoLocationUtils.build/Objects-normal/x86_64/GeoLocationUtilsApp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/GeoLocationUtils.build/Debug/GeoLocationUtils.build/Objects-normal/x86_64/GeoLocationUtilsApp.o -------------------------------------------------------------------------------- /samples/xcode/build/GeoLocationUtils.build/Debug/GeoLocationUtils.build/Objects-normal/x86_64/GeoLocationUtils_dependency_info.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/GeoLocationUtils.build/Debug/GeoLocationUtils.build/Objects-normal/x86_64/GeoLocationUtils_dependency_info.dat -------------------------------------------------------------------------------- /samples/xcode/build/GeoLocationUtils.build/Debug/GeoLocationUtils.build/dgph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/GeoLocationUtils.build/Debug/GeoLocationUtils.build/dgph -------------------------------------------------------------------------------- /samples/xcode/build/GeoLocationUtils.build/Debug/GeoLocationUtils.build/dgph~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/GeoLocationUtils.build/Debug/GeoLocationUtils.build/dgph~ -------------------------------------------------------------------------------- /samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-adreoywfwlsbnsarjiysqnfacnnw/GeoLocationUtils_Prefix.pch.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-adreoywfwlsbnsarjiysqnfacnnw/GeoLocationUtils_Prefix.pch.d -------------------------------------------------------------------------------- /samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-adreoywfwlsbnsarjiysqnfacnnw/GeoLocationUtils_Prefix.pch.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-adreoywfwlsbnsarjiysqnfacnnw/GeoLocationUtils_Prefix.pch.data -------------------------------------------------------------------------------- /samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-adreoywfwlsbnsarjiysqnfacnnw/GeoLocationUtils_Prefix.pch.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-adreoywfwlsbnsarjiysqnfacnnw/GeoLocationUtils_Prefix.pch.dia -------------------------------------------------------------------------------- /samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-adreoywfwlsbnsarjiysqnfacnnw/GeoLocationUtils_Prefix.pch.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-adreoywfwlsbnsarjiysqnfacnnw/GeoLocationUtils_Prefix.pch.pch -------------------------------------------------------------------------------- /samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-adreoywfwlsbnsarjiysqnfacnnw/GeoLocationUtils_Prefix.pch.pch.hash-criteria: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-adreoywfwlsbnsarjiysqnfacnnw/GeoLocationUtils_Prefix.pch.pch.hash-criteria -------------------------------------------------------------------------------- /samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-bhlihenmzdfrkbaopqjvfpfijhts/GeoLocationUtils_Prefix.pch.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-bhlihenmzdfrkbaopqjvfpfijhts/GeoLocationUtils_Prefix.pch.d -------------------------------------------------------------------------------- /samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-bhlihenmzdfrkbaopqjvfpfijhts/GeoLocationUtils_Prefix.pch.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-bhlihenmzdfrkbaopqjvfpfijhts/GeoLocationUtils_Prefix.pch.data -------------------------------------------------------------------------------- /samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-bhlihenmzdfrkbaopqjvfpfijhts/GeoLocationUtils_Prefix.pch.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-bhlihenmzdfrkbaopqjvfpfijhts/GeoLocationUtils_Prefix.pch.dia -------------------------------------------------------------------------------- /samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-bhlihenmzdfrkbaopqjvfpfijhts/GeoLocationUtils_Prefix.pch.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-bhlihenmzdfrkbaopqjvfpfijhts/GeoLocationUtils_Prefix.pch.pch -------------------------------------------------------------------------------- /samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-bhlihenmzdfrkbaopqjvfpfijhts/GeoLocationUtils_Prefix.pch.pch.hash-criteria: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-bhlihenmzdfrkbaopqjvfpfijhts/GeoLocationUtils_Prefix.pch.pch.hash-criteria -------------------------------------------------------------------------------- /samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-bnmpnjpvnmznakgqwysgzbquveym/GeoLocationUtils_Prefix.pch.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-bnmpnjpvnmznakgqwysgzbquveym/GeoLocationUtils_Prefix.pch.data -------------------------------------------------------------------------------- /samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-bnmpnjpvnmznakgqwysgzbquveym/GeoLocationUtils_Prefix.pch.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-bnmpnjpvnmznakgqwysgzbquveym/GeoLocationUtils_Prefix.pch.dia -------------------------------------------------------------------------------- /samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-bnmpnjpvnmznakgqwysgzbquveym/GeoLocationUtils_Prefix.pch.pch.hash-criteria: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-bnmpnjpvnmznakgqwysgzbquveym/GeoLocationUtils_Prefix.pch.pch.hash-criteria -------------------------------------------------------------------------------- /samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-cjbfzvwfeifcjsawymeqzqrlfahi/GeoLocationUtils_Prefix.pch.pch.hash-criteria: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-cjbfzvwfeifcjsawymeqzqrlfahi/GeoLocationUtils_Prefix.pch.pch.hash-criteria -------------------------------------------------------------------------------- /samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-eyhsfwxcoyuwqoarynkbyclkfnqj/GeoLocationUtils_Prefix.pch.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-eyhsfwxcoyuwqoarynkbyclkfnqj/GeoLocationUtils_Prefix.pch.d -------------------------------------------------------------------------------- /samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-eyhsfwxcoyuwqoarynkbyclkfnqj/GeoLocationUtils_Prefix.pch.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-eyhsfwxcoyuwqoarynkbyclkfnqj/GeoLocationUtils_Prefix.pch.data -------------------------------------------------------------------------------- /samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-eyhsfwxcoyuwqoarynkbyclkfnqj/GeoLocationUtils_Prefix.pch.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-eyhsfwxcoyuwqoarynkbyclkfnqj/GeoLocationUtils_Prefix.pch.dia -------------------------------------------------------------------------------- /samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-eyhsfwxcoyuwqoarynkbyclkfnqj/GeoLocationUtils_Prefix.pch.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-eyhsfwxcoyuwqoarynkbyclkfnqj/GeoLocationUtils_Prefix.pch.pch -------------------------------------------------------------------------------- /samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-eyhsfwxcoyuwqoarynkbyclkfnqj/GeoLocationUtils_Prefix.pch.pch.hash-criteria: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hperigo/Cinder-GeoUtils/HEAD/samples/xcode/build/SharedPrecompiledHeaders/GeoLocationUtils_Prefix-eyhsfwxcoyuwqoarynkbyclkfnqj/GeoLocationUtils_Prefix.pch.pch.hash-criteria --------------------------------------------------------------------------------