openfx-sys 0.1.0

Rust bindings for OpenFX
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 46;
	objects = {

/* Begin PBXAggregateTarget section */
		1E3CB89D179931E50032B538 /* HostSupport */ = {
			isa = PBXAggregateTarget;
			buildConfigurationList = 1E3CB89E179931E50032B538 /* Build configuration list for PBXAggregateTarget "HostSupport" */;
			buildPhases = (
			);
			dependencies = (
				1E3CB8A2179931EB0032B538 /* PBXTargetDependency */,
				1E3CB8A4179931F00032B538 /* PBXTargetDependency */,
				1E3CB8A6179931F00032B538 /* PBXTargetDependency */,
			);
			name = HostSupport;
			productName = HostSupport;
		};
/* End PBXAggregateTarget section */

/* Begin PBXBuildFile section */
		1E1A06991B7D0D0C00ED08EF /* ofxOld.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E1A06981B7D0D0C00ED08EF /* ofxOld.h */; };
		1E31EC3117F5CA44004AB554 /* ofxOpenGLRender.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E31EC2E17F5CA44004AB554 /* ofxOpenGLRender.h */; };
		1E31EC3217F5CA44004AB554 /* ofxParametricParam.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E31EC2F17F5CA44004AB554 /* ofxParametricParam.h */; };
		1E3CB82917992E520032B538 /* ofxhBinary.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB81A17992E520032B538 /* ofxhBinary.h */; };
		1E3CB82A17992E520032B538 /* ofxhClip.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB81B17992E520032B538 /* ofxhClip.h */; };
		1E3CB82B17992E520032B538 /* ofxhHost.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB81C17992E520032B538 /* ofxhHost.h */; };
		1E3CB82C17992E520032B538 /* ofxhImageEffect.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB81D17992E520032B538 /* ofxhImageEffect.h */; };
		1E3CB82D17992E520032B538 /* ofxhImageEffectAPI.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB81E17992E520032B538 /* ofxhImageEffectAPI.h */; };
		1E3CB82E17992E520032B538 /* ofxhInteract.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB81F17992E520032B538 /* ofxhInteract.h */; };
		1E3CB82F17992E520032B538 /* ofxhMemory.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB82017992E520032B538 /* ofxhMemory.h */; };
		1E3CB83017992E520032B538 /* ofxhParam.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB82117992E520032B538 /* ofxhParam.h */; };
		1E3CB83117992E520032B538 /* ofxhPluginAPICache.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB82217992E520032B538 /* ofxhPluginAPICache.h */; };
		1E3CB83217992E520032B538 /* ofxhPluginCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB82317992E520032B538 /* ofxhPluginCache.h */; };
		1E3CB83317992E520032B538 /* ofxhProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB82417992E520032B538 /* ofxhProgress.h */; };
		1E3CB83417992E520032B538 /* ofxhPropertySuite.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB82517992E520032B538 /* ofxhPropertySuite.h */; };
		1E3CB83517992E520032B538 /* ofxhTimeLine.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB82617992E520032B538 /* ofxhTimeLine.h */; };
		1E3CB83617992E520032B538 /* ofxhUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB82717992E520032B538 /* ofxhUtilities.h */; };
		1E3CB83717992E520032B538 /* ofxhXml.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB82817992E520032B538 /* ofxhXml.h */; };
		1E3CB84417992E990032B538 /* ofxCore.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB83917992E990032B538 /* ofxCore.h */; };
		1E3CB84517992E990032B538 /* ofxImageEffect.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB83A17992E990032B538 /* ofxImageEffect.h */; };
		1E3CB84617992E990032B538 /* ofxInteract.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB83B17992E990032B538 /* ofxInteract.h */; };
		1E3CB84717992E990032B538 /* ofxKeySyms.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB83C17992E990032B538 /* ofxKeySyms.h */; };
		1E3CB84817992E990032B538 /* ofxMemory.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB83D17992E990032B538 /* ofxMemory.h */; };
		1E3CB84917992E990032B538 /* ofxMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB83E17992E990032B538 /* ofxMessage.h */; };
		1E3CB84A17992E990032B538 /* ofxMultiThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB83F17992E990032B538 /* ofxMultiThread.h */; };
		1E3CB84B17992E990032B538 /* ofxParam.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB84017992E990032B538 /* ofxParam.h */; };
		1E3CB84C17992E990032B538 /* ofxProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB84117992E990032B538 /* ofxProgress.h */; };
		1E3CB84D17992E990032B538 /* ofxProperty.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB84217992E990032B538 /* ofxProperty.h */; };
		1E3CB84E17992E990032B538 /* ofxTimeLine.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB84317992E990032B538 /* ofxTimeLine.h */; };
		1E3CB85C17992EDF0032B538 /* ofxhBinary.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E3CB85017992EDF0032B538 /* ofxhBinary.cpp */; };
		1E3CB85D17992EDF0032B538 /* ofxhClip.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E3CB85117992EDF0032B538 /* ofxhClip.cpp */; };
		1E3CB85E17992EDF0032B538 /* ofxhHost.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E3CB85217992EDF0032B538 /* ofxhHost.cpp */; };
		1E3CB85F17992EDF0032B538 /* ofxhImageEffect.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E3CB85317992EDF0032B538 /* ofxhImageEffect.cpp */; };
		1E3CB86017992EDF0032B538 /* ofxhImageEffectAPI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E3CB85417992EDF0032B538 /* ofxhImageEffectAPI.cpp */; };
		1E3CB86117992EDF0032B538 /* ofxhInteract.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E3CB85517992EDF0032B538 /* ofxhInteract.cpp */; };
		1E3CB86217992EDF0032B538 /* ofxhMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E3CB85617992EDF0032B538 /* ofxhMemory.cpp */; };
		1E3CB86317992EDF0032B538 /* ofxhParam.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E3CB85717992EDF0032B538 /* ofxhParam.cpp */; };
		1E3CB86417992EDF0032B538 /* ofxhPluginAPICache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E3CB85817992EDF0032B538 /* ofxhPluginAPICache.cpp */; };
		1E3CB86517992EDF0032B538 /* ofxhPluginCache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E3CB85917992EDF0032B538 /* ofxhPluginCache.cpp */; };
		1E3CB86617992EDF0032B538 /* ofxhPropertySuite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E3CB85A17992EDF0032B538 /* ofxhPropertySuite.cpp */; };
		1E3CB86717992EDF0032B538 /* ofxhUtilities.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E3CB85B17992EDF0032B538 /* ofxhUtilities.cpp */; };
		1E3CB88A1799316F0032B538 /* cacheDemo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E3CB8891799316F0032B538 /* cacheDemo.cpp */; };
		1E3CB894179931810032B538 /* hostDemo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E3CB88B179931810032B538 /* hostDemo.cpp */; };
		1E3CB895179931810032B538 /* hostDemoClipInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E3CB88C179931810032B538 /* hostDemoClipInstance.cpp */; };
		1E3CB896179931810032B538 /* hostDemoEffectInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E3CB88E179931810032B538 /* hostDemoEffectInstance.cpp */; };
		1E3CB897179931810032B538 /* hostDemoHostDescriptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E3CB890179931810032B538 /* hostDemoHostDescriptor.cpp */; };
		1E3CB898179931810032B538 /* hostDemoParamInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E3CB892179931810032B538 /* hostDemoParamInstance.cpp */; };
		1E3CB8A7179932380032B538 /* libofxHost.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E742FEA17992CF9007D295B /* libofxHost.a */; };
		1E3CB8A81799323C0032B538 /* libofxHost.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E742FEA17992CF9007D295B /* libofxHost.a */; };
		1E3CB8AA179932800032B538 /* ofxPixels.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB8A9179932800032B538 /* ofxPixels.h */; };
		1E3CB8C2179935430032B538 /* ascii.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB8B4179935430032B538 /* ascii.h */; };
		1E3CB8C3179935430032B538 /* asciitab.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB8B5179935430032B538 /* asciitab.h */; };
		1E3CB8C4179935430032B538 /* expat_external.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB8B6179935430032B538 /* expat_external.h */; };
		1E3CB8C5179935430032B538 /* iasciitab.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB8B7179935430032B538 /* iasciitab.h */; };
		1E3CB8C6179935430032B538 /* internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB8B8179935430032B538 /* internal.h */; };
		1E3CB8C7179935430032B538 /* latin1tab.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB8B9179935430032B538 /* latin1tab.h */; };
		1E3CB8C8179935430032B538 /* nametab.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB8BA179935430032B538 /* nametab.h */; };
		1E3CB8C9179935430032B538 /* utf8tab.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB8BB179935430032B538 /* utf8tab.h */; };
		1E3CB8CA179935430032B538 /* xmlparse.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E3CB8BC179935430032B538 /* xmlparse.c */; };
		1E3CB8CB179935430032B538 /* xmlrole.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E3CB8BD179935430032B538 /* xmlrole.c */; };
		1E3CB8CC179935430032B538 /* xmltok_impl.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E3CB8BE179935430032B538 /* xmltok_impl.c */; };
		1E3CB8CD179935430032B538 /* xmltok_impl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E3CB8BF179935430032B538 /* xmltok_impl.h */; };
		1E3CB8CE179935430032B538 /* xmltok_ns.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E3CB8C0179935430032B538 /* xmltok_ns.c */; };
		1E3CB8CF179935430032B538 /* xmltok.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E3CB8C1179935430032B538 /* xmltok.c */; };
		1E3CB8D01799364A0032B538 /* libexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E3CB8AF179934420032B538 /* libexpat.a */; };
		1E3CB8D1179936810032B538 /* libexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E3CB8AF179934420032B538 /* libexpat.a */; };
		1EF4C7091B6D3C4700D6746A /* ofxDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EF4C7081B6D3C4700D6746A /* ofxDialog.h */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
		1E3CB8A1179931EB0032B538 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 1E742FE217992CF9007D295B /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 1E742FE917992CF9007D295B;
			remoteInfo = ofxHost;
		};
		1E3CB8A3179931F00032B538 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 1E742FE217992CF9007D295B /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 1E3CB8721799312D0032B538;
			remoteInfo = hostDemo;
		};
		1E3CB8A5179931F00032B538 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 1E742FE217992CF9007D295B /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 1E3CB87F179931470032B538;
			remoteInfo = cacheDemo;
		};
		1E7731871B6F787A009DFE2B /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 1E742FE217992CF9007D295B /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 1E742FE917992CF9007D295B;
			remoteInfo = ofxHost;
		};
		1E7731891B6F7882009DFE2B /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 1E742FE217992CF9007D295B /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 1E3CB8AE179934420032B538;
			remoteInfo = expat;
		};
		1E77318B1B6F7886009DFE2B /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 1E742FE217992CF9007D295B /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 1E742FE917992CF9007D295B;
			remoteInfo = ofxHost;
		};
		1E77318D1B6F7888009DFE2B /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 1E742FE217992CF9007D295B /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 1E3CB8AE179934420032B538;
			remoteInfo = expat;
		};
/* End PBXContainerItemProxy section */

/* Begin PBXCopyFilesBuildPhase section */
		1E3CB8711799312D0032B538 /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = /usr/share/man/man1/;
			dstSubfolderSpec = 0;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 1;
		};
		1E3CB87E179931470032B538 /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = /usr/share/man/man1/;
			dstSubfolderSpec = 0;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 1;
		};
/* End PBXCopyFilesBuildPhase section */

/* Begin PBXFileReference section */
		1E0832E619A1EC4F00A819A5 /* BUILDING */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BUILDING; sourceTree = "<group>"; };
		1E0832E719A1EC4F00A819A5 /* HostSupport.sln */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = HostSupport.sln; sourceTree = "<group>"; };
		1E0832E819A1EC4F00A819A5 /* HostSupport.vcproj */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = HostSupport.vcproj; sourceTree = "<group>"; };
		1E0832E919A1EC4F00A819A5 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
		1E0832EA19A1EC4F00A819A5 /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README; sourceTree = "<group>"; };
		1E0832EB19A1EC4F00A819A5 /* TTD */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = TTD; sourceTree = "<group>"; };
		1E08330119A1ECA600A819A5 /* README.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README.txt; sourceTree = "<group>"; };
		1E08330319A1ECA600A819A5 /* index.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html.documentation; path = index.html; sourceTree = "<group>"; };
		1E1A06981B7D0D0C00ED08EF /* ofxOld.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxOld.h; sourceTree = "<group>"; };
		1E31EC2E17F5CA44004AB554 /* ofxOpenGLRender.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxOpenGLRender.h; sourceTree = "<group>"; };
		1E31EC2F17F5CA44004AB554 /* ofxParametricParam.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxParametricParam.h; sourceTree = "<group>"; };
		1E3CB81A17992E520032B538 /* ofxhBinary.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxhBinary.h; sourceTree = "<group>"; };
		1E3CB81B17992E520032B538 /* ofxhClip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxhClip.h; sourceTree = "<group>"; };
		1E3CB81C17992E520032B538 /* ofxhHost.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxhHost.h; sourceTree = "<group>"; };
		1E3CB81D17992E520032B538 /* ofxhImageEffect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxhImageEffect.h; sourceTree = "<group>"; };
		1E3CB81E17992E520032B538 /* ofxhImageEffectAPI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxhImageEffectAPI.h; sourceTree = "<group>"; };
		1E3CB81F17992E520032B538 /* ofxhInteract.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxhInteract.h; sourceTree = "<group>"; };
		1E3CB82017992E520032B538 /* ofxhMemory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxhMemory.h; sourceTree = "<group>"; };
		1E3CB82117992E520032B538 /* ofxhParam.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxhParam.h; sourceTree = "<group>"; };
		1E3CB82217992E520032B538 /* ofxhPluginAPICache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxhPluginAPICache.h; sourceTree = "<group>"; };
		1E3CB82317992E520032B538 /* ofxhPluginCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxhPluginCache.h; sourceTree = "<group>"; };
		1E3CB82417992E520032B538 /* ofxhProgress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxhProgress.h; sourceTree = "<group>"; };
		1E3CB82517992E520032B538 /* ofxhPropertySuite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxhPropertySuite.h; sourceTree = "<group>"; };
		1E3CB82617992E520032B538 /* ofxhTimeLine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxhTimeLine.h; sourceTree = "<group>"; };
		1E3CB82717992E520032B538 /* ofxhUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxhUtilities.h; sourceTree = "<group>"; };
		1E3CB82817992E520032B538 /* ofxhXml.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxhXml.h; sourceTree = "<group>"; };
		1E3CB83917992E990032B538 /* ofxCore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxCore.h; sourceTree = "<group>"; };
		1E3CB83A17992E990032B538 /* ofxImageEffect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxImageEffect.h; sourceTree = "<group>"; };
		1E3CB83B17992E990032B538 /* ofxInteract.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxInteract.h; sourceTree = "<group>"; };
		1E3CB83C17992E990032B538 /* ofxKeySyms.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxKeySyms.h; sourceTree = "<group>"; };
		1E3CB83D17992E990032B538 /* ofxMemory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxMemory.h; sourceTree = "<group>"; };
		1E3CB83E17992E990032B538 /* ofxMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxMessage.h; sourceTree = "<group>"; };
		1E3CB83F17992E990032B538 /* ofxMultiThread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxMultiThread.h; sourceTree = "<group>"; };
		1E3CB84017992E990032B538 /* ofxParam.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxParam.h; sourceTree = "<group>"; };
		1E3CB84117992E990032B538 /* ofxProgress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxProgress.h; sourceTree = "<group>"; };
		1E3CB84217992E990032B538 /* ofxProperty.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxProperty.h; sourceTree = "<group>"; };
		1E3CB84317992E990032B538 /* ofxTimeLine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxTimeLine.h; sourceTree = "<group>"; };
		1E3CB85017992EDF0032B538 /* ofxhBinary.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ofxhBinary.cpp; sourceTree = "<group>"; };
		1E3CB85117992EDF0032B538 /* ofxhClip.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ofxhClip.cpp; sourceTree = "<group>"; };
		1E3CB85217992EDF0032B538 /* ofxhHost.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ofxhHost.cpp; sourceTree = "<group>"; };
		1E3CB85317992EDF0032B538 /* ofxhImageEffect.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ofxhImageEffect.cpp; sourceTree = "<group>"; };
		1E3CB85417992EDF0032B538 /* ofxhImageEffectAPI.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ofxhImageEffectAPI.cpp; sourceTree = "<group>"; };
		1E3CB85517992EDF0032B538 /* ofxhInteract.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ofxhInteract.cpp; sourceTree = "<group>"; };
		1E3CB85617992EDF0032B538 /* ofxhMemory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ofxhMemory.cpp; sourceTree = "<group>"; };
		1E3CB85717992EDF0032B538 /* ofxhParam.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ofxhParam.cpp; sourceTree = "<group>"; };
		1E3CB85817992EDF0032B538 /* ofxhPluginAPICache.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ofxhPluginAPICache.cpp; sourceTree = "<group>"; };
		1E3CB85917992EDF0032B538 /* ofxhPluginCache.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ofxhPluginCache.cpp; sourceTree = "<group>"; };
		1E3CB85A17992EDF0032B538 /* ofxhPropertySuite.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ofxhPropertySuite.cpp; sourceTree = "<group>"; };
		1E3CB85B17992EDF0032B538 /* ofxhUtilities.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ofxhUtilities.cpp; sourceTree = "<group>"; };
		1E3CB8731799312D0032B538 /* hostDemo */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = hostDemo; sourceTree = BUILT_PRODUCTS_DIR; };
		1E3CB880179931470032B538 /* cacheDemo */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = cacheDemo; sourceTree = BUILT_PRODUCTS_DIR; };
		1E3CB8891799316F0032B538 /* cacheDemo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = cacheDemo.cpp; sourceTree = "<group>"; };
		1E3CB88B179931810032B538 /* hostDemo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = hostDemo.cpp; sourceTree = "<group>"; };
		1E3CB88C179931810032B538 /* hostDemoClipInstance.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = hostDemoClipInstance.cpp; sourceTree = "<group>"; };
		1E3CB88D179931810032B538 /* hostDemoClipInstance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hostDemoClipInstance.h; sourceTree = "<group>"; };
		1E3CB88E179931810032B538 /* hostDemoEffectInstance.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = hostDemoEffectInstance.cpp; sourceTree = "<group>"; };
		1E3CB88F179931810032B538 /* hostDemoEffectInstance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hostDemoEffectInstance.h; sourceTree = "<group>"; };
		1E3CB890179931810032B538 /* hostDemoHostDescriptor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = hostDemoHostDescriptor.cpp; sourceTree = "<group>"; };
		1E3CB891179931810032B538 /* hostDemoHostDescriptor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hostDemoHostDescriptor.h; sourceTree = "<group>"; };
		1E3CB892179931810032B538 /* hostDemoParamInstance.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = hostDemoParamInstance.cpp; sourceTree = "<group>"; };
		1E3CB893179931810032B538 /* hostDemoParamInstance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hostDemoParamInstance.h; sourceTree = "<group>"; };
		1E3CB8A9179932800032B538 /* ofxPixels.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxPixels.h; sourceTree = "<group>"; };
		1E3CB8AF179934420032B538 /* libexpat.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libexpat.a; sourceTree = BUILT_PRODUCTS_DIR; };
		1E3CB8B4179935430032B538 /* ascii.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ascii.h; sourceTree = "<group>"; };
		1E3CB8B5179935430032B538 /* asciitab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asciitab.h; sourceTree = "<group>"; };
		1E3CB8B6179935430032B538 /* expat_external.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = expat_external.h; sourceTree = "<group>"; };
		1E3CB8B7179935430032B538 /* iasciitab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = iasciitab.h; sourceTree = "<group>"; };
		1E3CB8B8179935430032B538 /* internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = internal.h; sourceTree = "<group>"; };
		1E3CB8B9179935430032B538 /* latin1tab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = latin1tab.h; sourceTree = "<group>"; };
		1E3CB8BA179935430032B538 /* nametab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nametab.h; sourceTree = "<group>"; };
		1E3CB8BB179935430032B538 /* utf8tab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utf8tab.h; sourceTree = "<group>"; };
		1E3CB8BC179935430032B538 /* xmlparse.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xmlparse.c; sourceTree = "<group>"; };
		1E3CB8BD179935430032B538 /* xmlrole.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xmlrole.c; sourceTree = "<group>"; };
		1E3CB8BE179935430032B538 /* xmltok_impl.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xmltok_impl.c; sourceTree = "<group>"; };
		1E3CB8BF179935430032B538 /* xmltok_impl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xmltok_impl.h; sourceTree = "<group>"; };
		1E3CB8C0179935430032B538 /* xmltok_ns.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xmltok_ns.c; sourceTree = "<group>"; };
		1E3CB8C1179935430032B538 /* xmltok.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xmltok.c; sourceTree = "<group>"; };
		1E742FEA17992CF9007D295B /* libofxHost.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libofxHost.a; sourceTree = BUILT_PRODUCTS_DIR; };
		1EF4C7081B6D3C4700D6746A /* ofxDialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxDialog.h; sourceTree = "<group>"; };
		ACC09C6C200CAD170054AED3 /* index.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = index.rst; sourceTree = "<group>"; };
		ACC09C6E200CAD170054AED3 /* conf.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = conf.py; sourceTree = "<group>"; };
		ACC09C72200CAD170054AED3 /* ofxPluginStruct.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxPluginStruct.rst; sourceTree = "<group>"; };
		ACC09C73200CAD170054AED3 /* ofxImageEffectContexts.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxImageEffectContexts.rst; sourceTree = "<group>"; };
		ACC09C74200CAD170054AED3 /* index.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = index.rst; sourceTree = "<group>"; };
		ACC09C76200CAD170054AED3 /* ofxParameter.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxParameter.rst; sourceTree = "<group>"; };
		ACC09C77200CAD170054AED3 /* ofxInteractActions.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxInteractActions.rst; sourceTree = "<group>"; };
		ACC09C78200CAD170054AED3 /* ofxProcessingArch.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxProcessingArch.rst; sourceTree = "<group>"; };
		ACC09C7A200CAD170054AED3 /* ofxPackaging.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxPackaging.rst; sourceTree = "<group>"; };
		ACC09C7B200CAD170054AED3 /* ofxImageEffectActions.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxImageEffectActions.rst; sourceTree = "<group>"; };
		ACC09C7C200CAD170054AED3 /* ofxClipPreferences.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxClipPreferences.rst; sourceTree = "<group>"; };
		ACC09C7D200CAD170054AED3 /* ofxStatusCodes.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxStatusCodes.rst; sourceTree = "<group>"; };
		ACC09C80200CAD170054AED3 /* ofxStructure.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxStructure.rst; sourceTree = "<group>"; };
		ACC09C81200CAD170054AED3 /* ofxCoordSystem.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxCoordSystem.rst; sourceTree = "<group>"; };
		ACC09C83200CAD170054AED3 /* ofxThreadSafety.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxThreadSafety.rst; sourceTree = "<group>"; };
		ACC09C86200CAD170054AED3 /* ofxPropertiesReference.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxPropertiesReference.rst; sourceTree = "<group>"; };
		ACC09C88200CAD170054AED3 /* ofxImageClip.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxImageClip.rst; sourceTree = "<group>"; };
		ACC09C8B200CAD170054AED3 /* ofxInteracts.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxInteracts.rst; sourceTree = "<group>"; };
		ACC09C8C200CAD170054AED3 /* ofxPropertiesByObject.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxPropertiesByObject.rst; sourceTree = "<group>"; };
		ACC09C8D200CAD170054AED3 /* ofxImageEffectAPI.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxImageEffectAPI.rst; sourceTree = "<group>"; };
		ACC09C8E200CAD170054AED3 /* ofxLoadingSequence.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxLoadingSequence.rst; sourceTree = "<group>"; };
		ACC09C8F200CAD170054AED3 /* apiChanges_1_2_Chapter.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = apiChanges_1_2_Chapter.rst; sourceTree = "<group>"; };
		ACC09C91200CAD170054AED3 /* ofxCoreAPI.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxCoreAPI.rst; sourceTree = "<group>"; };
		ACC09C93200CAD170054AED3 /* ofxHostStruct.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxHostStruct.rst; sourceTree = "<group>"; };
		ACC09C94200CAD170054AED3 /* ofxRendering.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxRendering.rst; sourceTree = "<group>"; };
		ACC09C96200CAD230054AED3 /* genPropertiesReference.py */ = {isa = PBXFileReference; lastKnownFileType = text.script.python; path = genPropertiesReference.py; sourceTree = "<group>"; };
		ACC09C98200CAF240054AED3 /* ofxParametricParamReference.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxParametricParamReference.rst; sourceTree = "<group>"; };
		ACC09C99200CAF240054AED3 /* ofxProgressSuiteReference.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxProgressSuiteReference.rst; sourceTree = "<group>"; };
		ACC09C9A200CAF240054AED3 /* ofxThreadingSuiteReference.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxThreadingSuiteReference.rst; sourceTree = "<group>"; };
		ACC09C9B200CAF240054AED3 /* ofxMessageSuiteV2Reference.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxMessageSuiteV2Reference.rst; sourceTree = "<group>"; };
		ACC09C9C200CAF240054AED3 /* ofxImageEffectSuiteReference.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxImageEffectSuiteReference.rst; sourceTree = "<group>"; };
		ACC09C9D200CAF240054AED3 /* ofxOpenGLRenderSuiteReference.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxOpenGLRenderSuiteReference.rst; sourceTree = "<group>"; };
		ACC09C9E200CAF240054AED3 /* ofxMessageSuiteV1Reference.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxMessageSuiteV1Reference.rst; sourceTree = "<group>"; };
		ACC09C9F200CAF240054AED3 /* ofxPropertySuiteReference.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxPropertySuiteReference.rst; sourceTree = "<group>"; };
		ACC09CA0200CAF240054AED3 /* ofxParametersSuiteReference.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxParametersSuiteReference.rst; sourceTree = "<group>"; };
		ACC09CA1200CAF240054AED3 /* ofxInteractSuiteReference.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxInteractSuiteReference.rst; sourceTree = "<group>"; };
		ACC09CA2200CAF240054AED3 /* ofxSuiteReference.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxSuiteReference.rst; sourceTree = "<group>"; };
		ACC09CA3200CAF240054AED3 /* ofxTimeLineSuiteReference.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxTimeLineSuiteReference.rst; sourceTree = "<group>"; };
		ACC09CA4200CAF240054AED3 /* ofxMemorySuiteReference.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxMemorySuiteReference.rst; sourceTree = "<group>"; };
		ACC09CA6200D0F390054AED3 /* ofxExamples.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxExamples.rst; sourceTree = "<group>"; };
		ACC09CA9200D0F390054AED3 /* ofxExample2_Invert.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxExample2_Invert.rst; sourceTree = "<group>"; };
		ACC09CAA200D0F390054AED3 /* ofxExample3_Gain.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxExample3_Gain.rst; sourceTree = "<group>"; };
		ACC09CAB200D0F390054AED3 /* ofxExample4_Saturation.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxExample4_Saturation.rst; sourceTree = "<group>"; };
		ACC09CAF200D0F390054AED3 /* ofxExample1_Basics.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxExample1_Basics.rst; sourceTree = "<group>"; };
		ACC09CB1200D0F390054AED3 /* ofxExample5_Circle.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = ofxExample5_Circle.rst; sourceTree = "<group>"; };
		ACC09CB2200D0F390054AED3 /* index.rst */ = {isa = PBXFileReference; lastKnownFileType = text; path = index.rst; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		1E3CB8701799312D0032B538 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				1E3CB8D1179936810032B538 /* libexpat.a in Frameworks */,
				1E3CB8A81799323C0032B538 /* libofxHost.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		1E3CB87D179931470032B538 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				1E3CB8D01799364A0032B538 /* libexpat.a in Frameworks */,
				1E3CB8A7179932380032B538 /* libofxHost.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		1E3CB8AC179934420032B538 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		1E742FE717992CF9007D295B /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		1E0832ED19A1EC7700A819A5 /* Documentation */ = {
			isa = PBXGroup;
			children = (
				1E08330119A1ECA600A819A5 /* README.txt */,
				ACC09C96200CAD230054AED3 /* genPropertiesReference.py */,
				ACC09C62200CAD170054AED3 /* sources */,
				1E08330219A1ECA600A819A5 /* sourceforge */,
			);
			name = Documentation;
			path = ../Documentation;
			sourceTree = "<group>";
		};
		1E08330219A1ECA600A819A5 /* sourceforge */ = {
			isa = PBXGroup;
			children = (
				1E08330319A1ECA600A819A5 /* index.html */,
			);
			path = sourceforge;
			sourceTree = "<group>";
		};
		1E3CB81917992E2B0032B538 /* Headers */ = {
			isa = PBXGroup;
			children = (
				1E3CB81A17992E520032B538 /* ofxhBinary.h */,
				1E3CB81B17992E520032B538 /* ofxhClip.h */,
				1E3CB81C17992E520032B538 /* ofxhHost.h */,
				1E3CB81D17992E520032B538 /* ofxhImageEffect.h */,
				1E3CB81E17992E520032B538 /* ofxhImageEffectAPI.h */,
				1E3CB81F17992E520032B538 /* ofxhInteract.h */,
				1E3CB82017992E520032B538 /* ofxhMemory.h */,
				1E3CB82117992E520032B538 /* ofxhParam.h */,
				1E3CB82217992E520032B538 /* ofxhPluginAPICache.h */,
				1E3CB82317992E520032B538 /* ofxhPluginCache.h */,
				1E3CB82417992E520032B538 /* ofxhProgress.h */,
				1E3CB82517992E520032B538 /* ofxhPropertySuite.h */,
				1E3CB82617992E520032B538 /* ofxhTimeLine.h */,
				1E3CB82717992E520032B538 /* ofxhUtilities.h */,
				1E3CB82817992E520032B538 /* ofxhXml.h */,
			);
			name = Headers;
			path = include;
			sourceTree = "<group>";
		};
		1E3CB83817992E620032B538 /* External Headers */ = {
			isa = PBXGroup;
			children = (
				1E3CB83917992E990032B538 /* ofxCore.h */,
				1EF4C7081B6D3C4700D6746A /* ofxDialog.h */,
				1E3CB83A17992E990032B538 /* ofxImageEffect.h */,
				1E3CB83B17992E990032B538 /* ofxInteract.h */,
				1E3CB83C17992E990032B538 /* ofxKeySyms.h */,
				1E3CB83D17992E990032B538 /* ofxMemory.h */,
				1E3CB83E17992E990032B538 /* ofxMessage.h */,
				1E3CB83F17992E990032B538 /* ofxMultiThread.h */,
				1E1A06981B7D0D0C00ED08EF /* ofxOld.h */,
				1E31EC2E17F5CA44004AB554 /* ofxOpenGLRender.h */,
				1E3CB84017992E990032B538 /* ofxParam.h */,
				1E31EC2F17F5CA44004AB554 /* ofxParametricParam.h */,
				1E3CB8A9179932800032B538 /* ofxPixels.h */,
				1E3CB84117992E990032B538 /* ofxProgress.h */,
				1E3CB84217992E990032B538 /* ofxProperty.h */,
				1E3CB84317992E990032B538 /* ofxTimeLine.h */,
			);
			name = "External Headers";
			path = ../include;
			sourceTree = "<group>";
		};
		1E3CB84F17992EAB0032B538 /* Sources */ = {
			isa = PBXGroup;
			children = (
				1E3CB85017992EDF0032B538 /* ofxhBinary.cpp */,
				1E3CB85117992EDF0032B538 /* ofxhClip.cpp */,
				1E3CB85217992EDF0032B538 /* ofxhHost.cpp */,
				1E3CB85317992EDF0032B538 /* ofxhImageEffect.cpp */,
				1E3CB85417992EDF0032B538 /* ofxhImageEffectAPI.cpp */,
				1E3CB85517992EDF0032B538 /* ofxhInteract.cpp */,
				1E3CB85617992EDF0032B538 /* ofxhMemory.cpp */,
				1E3CB85717992EDF0032B538 /* ofxhParam.cpp */,
				1E3CB85817992EDF0032B538 /* ofxhPluginAPICache.cpp */,
				1E3CB85917992EDF0032B538 /* ofxhPluginCache.cpp */,
				1E3CB85A17992EDF0032B538 /* ofxhPropertySuite.cpp */,
				1E3CB85B17992EDF0032B538 /* ofxhUtilities.cpp */,
			);
			name = Sources;
			path = src;
			sourceTree = "<group>";
		};
		1E3CB86C179930D30032B538 /* Examples */ = {
			isa = PBXGroup;
			children = (
				1E3CB88B179931810032B538 /* hostDemo.cpp */,
				1E3CB88C179931810032B538 /* hostDemoClipInstance.cpp */,
				1E3CB88D179931810032B538 /* hostDemoClipInstance.h */,
				1E3CB88E179931810032B538 /* hostDemoEffectInstance.cpp */,
				1E3CB88F179931810032B538 /* hostDemoEffectInstance.h */,
				1E3CB890179931810032B538 /* hostDemoHostDescriptor.cpp */,
				1E3CB891179931810032B538 /* hostDemoHostDescriptor.h */,
				1E3CB892179931810032B538 /* hostDemoParamInstance.cpp */,
				1E3CB893179931810032B538 /* hostDemoParamInstance.h */,
				1E3CB8891799316F0032B538 /* cacheDemo.cpp */,
			);
			name = Examples;
			path = examples;
			sourceTree = "<group>";
		};
		1E3CB8B3179934C00032B538 /* Expat Sources */ = {
			isa = PBXGroup;
			children = (
				1E3CB8B4179935430032B538 /* ascii.h */,
				1E3CB8B5179935430032B538 /* asciitab.h */,
				1E3CB8B6179935430032B538 /* expat_external.h */,
				1E3CB8B7179935430032B538 /* iasciitab.h */,
				1E3CB8B8179935430032B538 /* internal.h */,
				1E3CB8B9179935430032B538 /* latin1tab.h */,
				1E3CB8BA179935430032B538 /* nametab.h */,
				1E3CB8BB179935430032B538 /* utf8tab.h */,
				1E3CB8BC179935430032B538 /* xmlparse.c */,
				1E3CB8BD179935430032B538 /* xmlrole.c */,
				1E3CB8BE179935430032B538 /* xmltok_impl.c */,
				1E3CB8BF179935430032B538 /* xmltok_impl.h */,
				1E3CB8C0179935430032B538 /* xmltok_ns.c */,
				1E3CB8C1179935430032B538 /* xmltok.c */,
			);
			name = "Expat Sources";
			path = "expat-2.0.1/lib";
			sourceTree = "<group>";
		};
		1E742FE117992CF9007D295B = {
			isa = PBXGroup;
			children = (
				1E0832ED19A1EC7700A819A5 /* Documentation */,
				1E0832E619A1EC4F00A819A5 /* BUILDING */,
				1E0832E719A1EC4F00A819A5 /* HostSupport.sln */,
				1E0832E819A1EC4F00A819A5 /* HostSupport.vcproj */,
				1E0832E919A1EC4F00A819A5 /* Makefile */,
				1E0832EA19A1EC4F00A819A5 /* README */,
				1E0832EB19A1EC4F00A819A5 /* TTD */,
				1E3CB86C179930D30032B538 /* Examples */,
				1E3CB84F17992EAB0032B538 /* Sources */,
				1E3CB83817992E620032B538 /* External Headers */,
				1E3CB8B3179934C00032B538 /* Expat Sources */,
				1E3CB81917992E2B0032B538 /* Headers */,
				1E742FEB17992CF9007D295B /* Products */,
			);
			sourceTree = "<group>";
		};
		1E742FEB17992CF9007D295B /* Products */ = {
			isa = PBXGroup;
			children = (
				1E742FEA17992CF9007D295B /* libofxHost.a */,
				1E3CB8731799312D0032B538 /* hostDemo */,
				1E3CB880179931470032B538 /* cacheDemo */,
				1E3CB8AF179934420032B538 /* libexpat.a */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		ACC09C62200CAD170054AED3 /* sources */ = {
			isa = PBXGroup;
			children = (
				ACC09C63200CAD170054AED3 /* Guide */,
				ACC09C6C200CAD170054AED3 /* index.rst */,
				ACC09C6E200CAD170054AED3 /* conf.py */,
				ACC09C70200CAD170054AED3 /* Reference */,
			);
			path = sources;
			sourceTree = "<group>";
		};
		ACC09C63200CAD170054AED3 /* Guide */ = {
			isa = PBXGroup;
			children = (
				ACC09CB2200D0F390054AED3 /* index.rst */,
				ACC09CAF200D0F390054AED3 /* ofxExample1_Basics.rst */,
				ACC09CA9200D0F390054AED3 /* ofxExample2_Invert.rst */,
				ACC09CAA200D0F390054AED3 /* ofxExample3_Gain.rst */,
				ACC09CAB200D0F390054AED3 /* ofxExample4_Saturation.rst */,
				ACC09CB1200D0F390054AED3 /* ofxExample5_Circle.rst */,
				ACC09CA6200D0F390054AED3 /* ofxExamples.rst */,
			);
			path = Guide;
			sourceTree = "<group>";
		};
		ACC09C70200CAD170054AED3 /* Reference */ = {
			isa = PBXGroup;
			children = (
				ACC09C97200CAF240054AED3 /* suites */,
				ACC09C74200CAD170054AED3 /* index.rst */,
				ACC09C72200CAD170054AED3 /* ofxPluginStruct.rst */,
				ACC09C93200CAD170054AED3 /* ofxHostStruct.rst */,
				ACC09C80200CAD170054AED3 /* ofxStructure.rst */,
				ACC09C91200CAD170054AED3 /* ofxCoreAPI.rst */,
				ACC09C8D200CAD170054AED3 /* ofxImageEffectAPI.rst */,
				ACC09C78200CAD170054AED3 /* ofxProcessingArch.rst */,
				ACC09C73200CAD170054AED3 /* ofxImageEffectContexts.rst */,
				ACC09C83200CAD170054AED3 /* ofxThreadSafety.rst */,
				ACC09C81200CAD170054AED3 /* ofxCoordSystem.rst */,
				ACC09C88200CAD170054AED3 /* ofxImageClip.rst */,
				ACC09C76200CAD170054AED3 /* ofxParameter.rst */,
				ACC09C94200CAD170054AED3 /* ofxRendering.rst */,
				ACC09C8B200CAD170054AED3 /* ofxInteracts.rst */,
				ACC09C7C200CAD170054AED3 /* ofxClipPreferences.rst */,
				ACC09C7B200CAD170054AED3 /* ofxImageEffectActions.rst */,
				ACC09C77200CAD170054AED3 /* ofxInteractActions.rst */,
				ACC09C8C200CAD170054AED3 /* ofxPropertiesByObject.rst */,
				ACC09C7A200CAD170054AED3 /* ofxPackaging.rst */,
				ACC09C7D200CAD170054AED3 /* ofxStatusCodes.rst */,
				ACC09C86200CAD170054AED3 /* ofxPropertiesReference.rst */,
				ACC09C8E200CAD170054AED3 /* ofxLoadingSequence.rst */,
				ACC09C8F200CAD170054AED3 /* apiChanges_1_2_Chapter.rst */,
			);
			path = Reference;
			sourceTree = "<group>";
		};
		ACC09C97200CAF240054AED3 /* suites */ = {
			isa = PBXGroup;
			children = (
				ACC09C98200CAF240054AED3 /* ofxParametricParamReference.rst */,
				ACC09C99200CAF240054AED3 /* ofxProgressSuiteReference.rst */,
				ACC09C9A200CAF240054AED3 /* ofxThreadingSuiteReference.rst */,
				ACC09C9B200CAF240054AED3 /* ofxMessageSuiteV2Reference.rst */,
				ACC09C9C200CAF240054AED3 /* ofxImageEffectSuiteReference.rst */,
				ACC09C9D200CAF240054AED3 /* ofxOpenGLRenderSuiteReference.rst */,
				ACC09C9E200CAF240054AED3 /* ofxMessageSuiteV1Reference.rst */,
				ACC09C9F200CAF240054AED3 /* ofxPropertySuiteReference.rst */,
				ACC09CA0200CAF240054AED3 /* ofxParametersSuiteReference.rst */,
				ACC09CA1200CAF240054AED3 /* ofxInteractSuiteReference.rst */,
				ACC09CA2200CAF240054AED3 /* ofxSuiteReference.rst */,
				ACC09CA3200CAF240054AED3 /* ofxTimeLineSuiteReference.rst */,
				ACC09CA4200CAF240054AED3 /* ofxMemorySuiteReference.rst */,
			);
			path = suites;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
		1E3CB8AD179934420032B538 /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
				1E3CB8C2179935430032B538 /* ascii.h in Headers */,
				1E3CB8C3179935430032B538 /* asciitab.h in Headers */,
				1E3CB8C4179935430032B538 /* expat_external.h in Headers */,
				1E3CB8C5179935430032B538 /* iasciitab.h in Headers */,
				1E3CB8C6179935430032B538 /* internal.h in Headers */,
				1E3CB8C7179935430032B538 /* latin1tab.h in Headers */,
				1E3CB8C8179935430032B538 /* nametab.h in Headers */,
				1E3CB8C9179935430032B538 /* utf8tab.h in Headers */,
				1E3CB8CD179935430032B538 /* xmltok_impl.h in Headers */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		1E742FE817992CF9007D295B /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
				1E3CB82917992E520032B538 /* ofxhBinary.h in Headers */,
				1E3CB82A17992E520032B538 /* ofxhClip.h in Headers */,
				1E3CB82B17992E520032B538 /* ofxhHost.h in Headers */,
				1E3CB82C17992E520032B538 /* ofxhImageEffect.h in Headers */,
				1E31EC3217F5CA44004AB554 /* ofxParametricParam.h in Headers */,
				1E3CB82D17992E520032B538 /* ofxhImageEffectAPI.h in Headers */,
				1E3CB82E17992E520032B538 /* ofxhInteract.h in Headers */,
				1E3CB82F17992E520032B538 /* ofxhMemory.h in Headers */,
				1E3CB83017992E520032B538 /* ofxhParam.h in Headers */,
				1E3CB83117992E520032B538 /* ofxhPluginAPICache.h in Headers */,
				1E1A06991B7D0D0C00ED08EF /* ofxOld.h in Headers */,
				1E3CB83217992E520032B538 /* ofxhPluginCache.h in Headers */,
				1E3CB83317992E520032B538 /* ofxhProgress.h in Headers */,
				1E3CB83417992E520032B538 /* ofxhPropertySuite.h in Headers */,
				1E3CB83517992E520032B538 /* ofxhTimeLine.h in Headers */,
				1E3CB83617992E520032B538 /* ofxhUtilities.h in Headers */,
				1E3CB83717992E520032B538 /* ofxhXml.h in Headers */,
				1E3CB84417992E990032B538 /* ofxCore.h in Headers */,
				1E3CB84517992E990032B538 /* ofxImageEffect.h in Headers */,
				1E3CB84617992E990032B538 /* ofxInteract.h in Headers */,
				1E3CB84717992E990032B538 /* ofxKeySyms.h in Headers */,
				1E3CB84817992E990032B538 /* ofxMemory.h in Headers */,
				1E3CB84917992E990032B538 /* ofxMessage.h in Headers */,
				1E3CB84A17992E990032B538 /* ofxMultiThread.h in Headers */,
				1E3CB84B17992E990032B538 /* ofxParam.h in Headers */,
				1E3CB84C17992E990032B538 /* ofxProgress.h in Headers */,
				1E3CB84D17992E990032B538 /* ofxProperty.h in Headers */,
				1E31EC3117F5CA44004AB554 /* ofxOpenGLRender.h in Headers */,
				1E3CB84E17992E990032B538 /* ofxTimeLine.h in Headers */,
				1EF4C7091B6D3C4700D6746A /* ofxDialog.h in Headers */,
				1E3CB8AA179932800032B538 /* ofxPixels.h in Headers */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXHeadersBuildPhase section */

/* Begin PBXNativeTarget section */
		1E3CB8721799312D0032B538 /* hostDemo */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 1E3CB8791799312D0032B538 /* Build configuration list for PBXNativeTarget "hostDemo" */;
			buildPhases = (
				1E3CB86F1799312D0032B538 /* Sources */,
				1E3CB8701799312D0032B538 /* Frameworks */,
				1E3CB8711799312D0032B538 /* CopyFiles */,
			);
			buildRules = (
			);
			dependencies = (
				1E77318A1B6F7882009DFE2B /* PBXTargetDependency */,
				1E7731881B6F787A009DFE2B /* PBXTargetDependency */,
			);
			name = hostDemo;
			productName = hostDemo;
			productReference = 1E3CB8731799312D0032B538 /* hostDemo */;
			productType = "com.apple.product-type.tool";
		};
		1E3CB87F179931470032B538 /* cacheDemo */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 1E3CB886179931470032B538 /* Build configuration list for PBXNativeTarget "cacheDemo" */;
			buildPhases = (
				1E3CB87C179931470032B538 /* Sources */,
				1E3CB87D179931470032B538 /* Frameworks */,
				1E3CB87E179931470032B538 /* CopyFiles */,
			);
			buildRules = (
			);
			dependencies = (
				1E77318E1B6F7888009DFE2B /* PBXTargetDependency */,
				1E77318C1B6F7886009DFE2B /* PBXTargetDependency */,
			);
			name = cacheDemo;
			productName = cacheDemo;
			productReference = 1E3CB880179931470032B538 /* cacheDemo */;
			productType = "com.apple.product-type.tool";
		};
		1E3CB8AE179934420032B538 /* expat */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 1E3CB8B0179934420032B538 /* Build configuration list for PBXNativeTarget "expat" */;
			buildPhases = (
				1E3CB8AB179934420032B538 /* Sources */,
				1E3CB8AC179934420032B538 /* Frameworks */,
				1E3CB8AD179934420032B538 /* Headers */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = expat;
			productName = expart;
			productReference = 1E3CB8AF179934420032B538 /* libexpat.a */;
			productType = "com.apple.product-type.library.static";
		};
		1E742FE917992CF9007D295B /* ofxHost */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 1E742FEE17992CF9007D295B /* Build configuration list for PBXNativeTarget "ofxHost" */;
			buildPhases = (
				1E742FE617992CF9007D295B /* Sources */,
				1E742FE717992CF9007D295B /* Frameworks */,
				1E742FE817992CF9007D295B /* Headers */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = ofxHost;
			productName = HostSupport;
			productReference = 1E742FEA17992CF9007D295B /* libofxHost.a */;
			productType = "com.apple.product-type.library.static";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		1E742FE217992CF9007D295B /* Project object */ = {
			isa = PBXProject;
			attributes = {
				LastUpgradeCheck = 0460;
				ORGANIZATIONNAME = OpenFX;
			};
			buildConfigurationList = 1E742FE517992CF9007D295B /* Build configuration list for PBXProject "HostSupport" */;
			compatibilityVersion = "Xcode 3.2";
			developmentRegion = English;
			hasScannedForEncodings = 0;
			knownRegions = (
				en,
			);
			mainGroup = 1E742FE117992CF9007D295B;
			productRefGroup = 1E742FEB17992CF9007D295B /* Products */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				1E742FE917992CF9007D295B /* ofxHost */,
				1E3CB8AE179934420032B538 /* expat */,
				1E3CB8721799312D0032B538 /* hostDemo */,
				1E3CB87F179931470032B538 /* cacheDemo */,
				1E3CB89D179931E50032B538 /* HostSupport */,
			);
		};
/* End PBXProject section */

/* Begin PBXSourcesBuildPhase section */
		1E3CB86F1799312D0032B538 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				1E3CB894179931810032B538 /* hostDemo.cpp in Sources */,
				1E3CB895179931810032B538 /* hostDemoClipInstance.cpp in Sources */,
				1E3CB896179931810032B538 /* hostDemoEffectInstance.cpp in Sources */,
				1E3CB897179931810032B538 /* hostDemoHostDescriptor.cpp in Sources */,
				1E3CB898179931810032B538 /* hostDemoParamInstance.cpp in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		1E3CB87C179931470032B538 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				1E3CB88A1799316F0032B538 /* cacheDemo.cpp in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		1E3CB8AB179934420032B538 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				1E3CB8CA179935430032B538 /* xmlparse.c in Sources */,
				1E3CB8CB179935430032B538 /* xmlrole.c in Sources */,
				1E3CB8CC179935430032B538 /* xmltok_impl.c in Sources */,
				1E3CB8CE179935430032B538 /* xmltok_ns.c in Sources */,
				1E3CB8CF179935430032B538 /* xmltok.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		1E742FE617992CF9007D295B /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				1E3CB85C17992EDF0032B538 /* ofxhBinary.cpp in Sources */,
				1E3CB85D17992EDF0032B538 /* ofxhClip.cpp in Sources */,
				1E3CB85E17992EDF0032B538 /* ofxhHost.cpp in Sources */,
				1E3CB85F17992EDF0032B538 /* ofxhImageEffect.cpp in Sources */,
				1E3CB86017992EDF0032B538 /* ofxhImageEffectAPI.cpp in Sources */,
				1E3CB86117992EDF0032B538 /* ofxhInteract.cpp in Sources */,
				1E3CB86217992EDF0032B538 /* ofxhMemory.cpp in Sources */,
				1E3CB86317992EDF0032B538 /* ofxhParam.cpp in Sources */,
				1E3CB86417992EDF0032B538 /* ofxhPluginAPICache.cpp in Sources */,
				1E3CB86517992EDF0032B538 /* ofxhPluginCache.cpp in Sources */,
				1E3CB86617992EDF0032B538 /* ofxhPropertySuite.cpp in Sources */,
				1E3CB86717992EDF0032B538 /* ofxhUtilities.cpp in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXTargetDependency section */
		1E3CB8A2179931EB0032B538 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 1E742FE917992CF9007D295B /* ofxHost */;
			targetProxy = 1E3CB8A1179931EB0032B538 /* PBXContainerItemProxy */;
		};
		1E3CB8A4179931F00032B538 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 1E3CB8721799312D0032B538 /* hostDemo */;
			targetProxy = 1E3CB8A3179931F00032B538 /* PBXContainerItemProxy */;
		};
		1E3CB8A6179931F00032B538 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 1E3CB87F179931470032B538 /* cacheDemo */;
			targetProxy = 1E3CB8A5179931F00032B538 /* PBXContainerItemProxy */;
		};
		1E7731881B6F787A009DFE2B /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 1E742FE917992CF9007D295B /* ofxHost */;
			targetProxy = 1E7731871B6F787A009DFE2B /* PBXContainerItemProxy */;
		};
		1E77318A1B6F7882009DFE2B /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 1E3CB8AE179934420032B538 /* expat */;
			targetProxy = 1E7731891B6F7882009DFE2B /* PBXContainerItemProxy */;
		};
		1E77318C1B6F7886009DFE2B /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 1E742FE917992CF9007D295B /* ofxHost */;
			targetProxy = 1E77318B1B6F7886009DFE2B /* PBXContainerItemProxy */;
		};
		1E77318E1B6F7888009DFE2B /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 1E3CB8AE179934420032B538 /* expat */;
			targetProxy = 1E77318D1B6F7888009DFE2B /* PBXContainerItemProxy */;
		};
/* End PBXTargetDependency section */

/* Begin XCBuildConfiguration section */
		1E3CB87A1799312D0032B538 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Debug;
		};
		1E3CB87B1799312D0032B538 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Release;
		};
		1E3CB887179931470032B538 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Debug;
		};
		1E3CB888179931470032B538 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Release;
		};
		1E3CB89F179931E50032B538 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Debug;
		};
		1E3CB8A0179931E50032B538 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Release;
		};
		1E3CB8B1179934420032B538 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				EXECUTABLE_PREFIX = lib;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_ENABLE_OBJC_EXCEPTIONS = YES;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"HAVE_MEMMOVE=1",
					"HAVE_BCOPY=1",
					"$(inherited)",
				);
				MACOSX_DEPLOYMENT_TARGET = 10.8;
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Debug;
		};
		1E3CB8B2179934420032B538 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				EXECUTABLE_PREFIX = lib;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_ENABLE_OBJC_EXCEPTIONS = YES;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"HAVE_MEMMOVE=1",
					"HAVE_BCOPY=1",
					"$(inherited)",
				);
				MACOSX_DEPLOYMENT_TARGET = 10.8;
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Release;
		};
		1E742FEC17992CF9007D295B /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				COPY_PHASE_STRIP = NO;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
					OFX_DEBUG_ACTIONS,
					OFX_DEBUG_PARAMETERS,
					OFX_DEBUG_PROPERTIES,
					OFX_SUPPORTS_OPENGLRENDER,
				);
				"GCC_PREPROCESSOR_DEFINITIONS[arch=*]" = (
					"DEBUG=1",
					"$(inherited)",
					OFX_DEBUG_ACTIONS,
					OFX_DEBUG_PARAMETERS,
				);
				GCC_SYMBOLS_PRIVATE_EXTERN = NO;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				HEADER_SEARCH_PATHS = (
					"$(inherited)",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					../include,
				);
				ONLY_ACTIVE_ARCH = YES;
			};
			name = Debug;
		};
		1E742FED17992CF9007D295B /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				COPY_PHASE_STRIP = YES;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				HEADER_SEARCH_PATHS = (
					"$(inherited)",
					/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
					../include,
				);
			};
			name = Release;
		};
		1E742FEF17992CF9007D295B /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				EXECUTABLE_PREFIX = lib;
				GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
				PRODUCT_NAME = ofxHost;
				WARNING_CFLAGS = (
					"-Wall",
					"-Wextra",
				);
			};
			name = Debug;
		};
		1E742FF017992CF9007D295B /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				EXECUTABLE_PREFIX = lib;
				GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
				PRODUCT_NAME = ofxHost;
				WARNING_CFLAGS = (
					"-Wall",
					"-Wextra",
				);
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		1E3CB8791799312D0032B538 /* Build configuration list for PBXNativeTarget "hostDemo" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				1E3CB87A1799312D0032B538 /* Debug */,
				1E3CB87B1799312D0032B538 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		1E3CB886179931470032B538 /* Build configuration list for PBXNativeTarget "cacheDemo" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				1E3CB887179931470032B538 /* Debug */,
				1E3CB888179931470032B538 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		1E3CB89E179931E50032B538 /* Build configuration list for PBXAggregateTarget "HostSupport" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				1E3CB89F179931E50032B538 /* Debug */,
				1E3CB8A0179931E50032B538 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		1E3CB8B0179934420032B538 /* Build configuration list for PBXNativeTarget "expat" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				1E3CB8B1179934420032B538 /* Debug */,
				1E3CB8B2179934420032B538 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		1E742FE517992CF9007D295B /* Build configuration list for PBXProject "HostSupport" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				1E742FEC17992CF9007D295B /* Debug */,
				1E742FED17992CF9007D295B /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		1E742FEE17992CF9007D295B /* Build configuration list for PBXNativeTarget "ofxHost" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				1E742FEF17992CF9007D295B /* Debug */,
				1E742FF017992CF9007D295B /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = 1E742FE217992CF9007D295B /* Project object */;
}