1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-12-01 09:24:10 +01:00

AHRS: Added the filtered data to the attitude raw object. Even though this seems like an oxymoron it's still raw to the EKF algorithm, and nice to see the real values after filtering to make sure nothing weird is going on. However, if people don't like this I'm open to suggestions/patches. I'd maybe suggest the whole attituderaw object be converted to ahrsraw anyway since it's more like that (eg. none of the values are actually attitude estimates).

git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@1325 ebee16cc-31ac-478f-84a7-5cbb03baadba
This commit is contained in:
peabody124 2010-08-18 14:54:24 +00:00 committed by peabody124
parent fda6fc8371
commit cfd20922cd
10 changed files with 6426 additions and 26 deletions

View File

@ -638,6 +638,11 @@ void process_spi_request(void)
user_tx_v1.payload.user.v.rsp.attituderaw.gyros.x = gyro_data.raw.x;
user_tx_v1.payload.user.v.rsp.attituderaw.gyros.y = gyro_data.raw.y;
user_tx_v1.payload.user.v.rsp.attituderaw.gyros.z = gyro_data.raw.z;
user_tx_v1.payload.user.v.rsp.attituderaw.gyros_filtered.x = gyro_data.filtered.x;
user_tx_v1.payload.user.v.rsp.attituderaw.gyros_filtered.y = gyro_data.filtered.y;
user_tx_v1.payload.user.v.rsp.attituderaw.gyros_filtered.z = gyro_data.filtered.z;
user_tx_v1.payload.user.v.rsp.attituderaw.gyros.xy_temp = gyro_data.temp.xy;
user_tx_v1.payload.user.v.rsp.attituderaw.gyros.z_temp = gyro_data.temp.z;
@ -645,6 +650,10 @@ void process_spi_request(void)
user_tx_v1.payload.user.v.rsp.attituderaw.accels.y = accel_data.raw.y;
user_tx_v1.payload.user.v.rsp.attituderaw.accels.z = accel_data.raw.z;
user_tx_v1.payload.user.v.rsp.attituderaw.accels_filtered.x = accel_data.filtered.x;
user_tx_v1.payload.user.v.rsp.attituderaw.accels_filtered.y = accel_data.filtered.y;
user_tx_v1.payload.user.v.rsp.attituderaw.accels_filtered.z = accel_data.filtered.z;
dump_spi_message(PIOS_COM_AUX, "R", (uint8_t *)&user_tx_v1, sizeof(user_tx_v1));
lfsm_user_set_tx_v1 (&user_tx_v1);
break;

View File

@ -205,12 +205,20 @@ static void update_attitude_raw(struct opahrs_msg_v1_rsp_attituderaw * attituder
data.gyros[ATTITUDERAW_GYROS_Y] = attituderaw->gyros.y;
data.gyros[ATTITUDERAW_GYROS_Z] = attituderaw->gyros.z;
data.gyros_filtered[ATTITUDERAW_GYROS_FILTERED_X] = attituderaw->gyros_filtered.x;
data.gyros_filtered[ATTITUDERAW_GYROS_FILTERED_Y] = attituderaw->gyros_filtered.y;
data.gyros_filtered[ATTITUDERAW_GYROS_FILTERED_Z] = attituderaw->gyros_filtered.z;
data.gyrotemp[ATTITUDERAW_GYROTEMP_XY] = attituderaw->gyros.xy_temp;
data.gyrotemp[ATTITUDERAW_GYROTEMP_Z] = attituderaw->gyros.z_temp;
data.accelerometers[ATTITUDERAW_ACCELEROMETERS_X] = attituderaw->accels.x;
data.accelerometers[ATTITUDERAW_ACCELEROMETERS_Y] = attituderaw->accels.y;
data.accelerometers[ATTITUDERAW_ACCELEROMETERS_Z] = attituderaw->accels.z;
data.accels[ATTITUDERAW_ACCELS_X] = attituderaw->accels.x;
data.accels[ATTITUDERAW_ACCELS_Y] = attituderaw->accels.y;
data.accels[ATTITUDERAW_ACCELS_Z] = attituderaw->accels.z;
data.accels_filtered[ATTITUDERAW_ACCELS_FILTERED_X] = attituderaw->accels_filtered.x;
data.accels_filtered[ATTITUDERAW_ACCELS_FILTERED_Y] = attituderaw->accels_filtered.y;
data.accels_filtered[ATTITUDERAW_ACCELS_FILTERED_Z] = attituderaw->accels_filtered.z;
AttitudeRawSet(&data);
}

View File

@ -33,7 +33,7 @@
#define ATTITUDERAW_H
// Object constants
#define ATTITUDERAW_OBJID 4179445416U
#define ATTITUDERAW_OBJID 1323193976U
#define ATTITUDERAW_NAME "AttitudeRaw"
#define ATTITUDERAW_METANAME "AttitudeRawMeta"
#define ATTITUDERAW_ISSINGLEINST 1
@ -59,8 +59,10 @@
typedef struct {
int16_t magnetometers[3];
uint16_t gyros[3];
float gyros_filtered[3];
uint16_t gyrotemp[2];
uint16_t accelerometers[3];
uint16_t accels[3];
float accels_filtered[3];
} __attribute__((packed)) AttitudeRawData;
@ -75,16 +77,26 @@ typedef enum { ATTITUDERAW_MAGNETOMETERS_X=0, ATTITUDERAW_MAGNETOMETERS_Y=1, ATT
typedef enum { ATTITUDERAW_GYROS_X=0, ATTITUDERAW_GYROS_Y=1, ATTITUDERAW_GYROS_Z=2 } AttitudeRawgyrosElem;
/* Number of elements for field gyros */
#define ATTITUDERAW_GYROS_NUMELEM 3
// Field gyros_filtered information
/* Array element names for field gyros_filtered */
typedef enum { ATTITUDERAW_GYROS_FILTERED_X=0, ATTITUDERAW_GYROS_FILTERED_Y=1, ATTITUDERAW_GYROS_FILTERED_Z=2 } AttitudeRawgyros_filteredElem;
/* Number of elements for field gyros_filtered */
#define ATTITUDERAW_GYROS_FILTERED_NUMELEM 3
// Field gyrotemp information
/* Array element names for field gyrotemp */
typedef enum { ATTITUDERAW_GYROTEMP_XY=0, ATTITUDERAW_GYROTEMP_Z=1 } AttitudeRawgyrotempElem;
/* Number of elements for field gyrotemp */
#define ATTITUDERAW_GYROTEMP_NUMELEM 2
// Field accelerometers information
/* Array element names for field accelerometers */
typedef enum { ATTITUDERAW_ACCELEROMETERS_X=0, ATTITUDERAW_ACCELEROMETERS_Y=1, ATTITUDERAW_ACCELEROMETERS_Z=2 } AttitudeRawaccelerometersElem;
/* Number of elements for field accelerometers */
#define ATTITUDERAW_ACCELEROMETERS_NUMELEM 3
// Field accels information
/* Array element names for field accels */
typedef enum { ATTITUDERAW_ACCELS_X=0, ATTITUDERAW_ACCELS_Y=1, ATTITUDERAW_ACCELS_Z=2 } AttitudeRawaccelsElem;
/* Number of elements for field accels */
#define ATTITUDERAW_ACCELS_NUMELEM 3
// Field accels_filtered information
/* Array element names for field accels_filtered */
typedef enum { ATTITUDERAW_ACCELS_FILTERED_X=0, ATTITUDERAW_ACCELS_FILTERED_Y=1, ATTITUDERAW_ACCELS_FILTERED_Z=2 } AttitudeRawaccels_filteredElem;
/* Number of elements for field accels_filtered */
#define ATTITUDERAW_ACCELS_FILTERED_NUMELEM 3
// Generic interface functions

View File

@ -236,11 +236,21 @@ struct opahrs_msg_v1_rsp_attituderaw {
uint16_t xy_temp;
uint16_t z_temp;
} gyros;
struct {
float x;
float y;
float z;
} gyros_filtered;
struct {
uint16_t x;
uint16_t y;
uint16_t z;
} accels;
struct {
float x;
float y;
float z;
} accels_filtered;
} __attribute__((__packed__));
struct opahrs_msg_v1_rsp_attitude {

View File

@ -4,7 +4,7 @@
interface ft2232
ft2232_vid_pid 0x0403 0x6010
ft2232_device_desc "Dual RS232-HS"
#ft2232_device_desc "Dual RS232-HS"
#ft2232_bus_addr "002:088"
#ft2232_serial "1234567890"
ft2232_layout "usbjtag"

View File

@ -62,6 +62,2542 @@
65A2C81D11E2A33D00D0391E /* pios_udp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pios_udp.c; path = ../../PiOS.posix/posix/pios_udp.c; sourceTree = SOURCE_ROOT; };
65B35CFA121A4540003EAD18 /* CoordinateConversions.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = CoordinateConversions.c; path = ../../AHRS/CoordinateConversions.c; sourceTree = SOURCE_ROOT; };
65B35CFB121A45C6003EAD18 /* CoordinateConversions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CoordinateConversions.h; sourceTree = "<group>"; };
65B35D7F121C261E003EAD18 /* bin.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = bin.pro; sourceTree = "<group>"; };
65B35D80121C261E003EAD18 /* openpilotgcs */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = openpilotgcs; sourceTree = "<group>"; };
65B35D81121C261E003EAD18 /* openpilotgcs.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = openpilotgcs.pri; sourceTree = "<group>"; };
65B35D82121C261E003EAD18 /* openpilotgcs.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = openpilotgcs.pro; sourceTree = "<group>"; };
65B35D83121C261E003EAD18 /* openpilotgcs.pro.user */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = openpilotgcs.pro.user; sourceTree = "<group>"; };
65B35D88121C261E003EAD18 /* system-health.svg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = "system-health.svg"; sourceTree = "<group>"; };
65B35D8B121C261E003EAD18 /* altimeter.svg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = altimeter.svg; sourceTree = "<group>"; };
65B35D8C121C261E003EAD18 /* attitude.svg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = attitude.svg; sourceTree = "<group>"; };
65B35D8D121C261E003EAD18 /* compass.svg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = compass.svg; sourceTree = "<group>"; };
65B35D8E121C261E003EAD18 /* flightmode-status.svg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = "flightmode-status.svg"; sourceTree = "<group>"; };
65B35D8F121C261E003EAD18 /* gps-signal.svg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = "gps-signal.svg"; sourceTree = "<group>"; };
65B35D90121C261E003EAD18 /* gps-status.svg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = "gps-status.svg"; sourceTree = "<group>"; };
65B35D91121C261E003EAD18 /* lineardial-horizontal.svg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = "lineardial-horizontal.svg"; sourceTree = "<group>"; };
65B35D92121C261E003EAD18 /* lineardial-vertical.svg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = "lineardial-vertical.svg"; sourceTree = "<group>"; };
65B35D93121C261E003EAD18 /* Readme.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Readme.txt; sourceTree = "<group>"; };
65B35D94121C261E003EAD18 /* speed.svg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = speed.svg; sourceTree = "<group>"; };
65B35D95121C261E003EAD18 /* textonly.svg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = textonly.svg; sourceTree = "<group>"; };
65B35D96121C261E003EAD18 /* thermometer.svg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = thermometer.svg; sourceTree = "<group>"; };
65B35D97121C261E003EAD18 /* vsi.svg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = vsi.svg; sourceTree = "<group>"; };
65B35D99121C261E003EAD18 /* altimeter.svg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = altimeter.svg; sourceTree = "<group>"; };
65B35D9A121C261E003EAD18 /* speed.svg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = speed.svg; sourceTree = "<group>"; };
65B35D9B121C261E003EAD18 /* vsi.svg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = vsi.svg; sourceTree = "<group>"; };
65B35D9D121C261E003EAD18 /* easystar.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = easystar.png; sourceTree = "<group>"; };
65B35D9E121C261E003EAD18 /* quad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = quad.png; sourceTree = "<group>"; };
65B35DA1121C261E003EAD18 /* EasyS.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = EasyS.jpg; sourceTree = "<group>"; };
65B35DA2121C261E003EAD18 /* EasyStar.3ds */ = {isa = PBXFileReference; lastKnownFileType = file; path = EasyStar.3ds; sourceTree = "<group>"; };
65B35DA3121C261E003EAD18 /* V1White.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = V1White.jpg; sourceTree = "<group>"; };
65B35DA4121C261E003EAD18 /* V2White.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = V2White.jpg; sourceTree = "<group>"; };
65B35DA5121C261E003EAD18 /* White.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = White.jpg; sourceTree = "<group>"; };
65B35DA6121C261E003EAD18 /* wing.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = wing.jpg; sourceTree = "<group>"; };
65B35DA9121C261E003EAD18 /* pfd.svg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = pfd.svg; sourceTree = "<group>"; };
65B35DAB121C261E003EAD18 /* Complete sound set.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "Complete sound set.txt"; sourceTree = "<group>"; };
65B35DAD121C261E003EAD18 /* 0.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = 0.wav; sourceTree = "<group>"; };
65B35DAE121C261E003EAD18 /* 1.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = 1.wav; sourceTree = "<group>"; };
65B35DAF121C261E003EAD18 /* 10.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = 10.wav; sourceTree = "<group>"; };
65B35DB0121C261E003EAD18 /* 100.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = 100.wav; sourceTree = "<group>"; };
65B35DB1121C261E003EAD18 /* 1000.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = 1000.wav; sourceTree = "<group>"; };
65B35DB2121C261E003EAD18 /* 11.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = 11.wav; sourceTree = "<group>"; };
65B35DB3121C261E003EAD18 /* 12.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = 12.wav; sourceTree = "<group>"; };
65B35DB4121C261E003EAD18 /* 13.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = 13.wav; sourceTree = "<group>"; };
65B35DB5121C261E003EAD18 /* 14.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = 14.wav; sourceTree = "<group>"; };
65B35DB6121C261E003EAD18 /* 15.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = 15.wav; sourceTree = "<group>"; };
65B35DB7121C261E003EAD18 /* 16.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = 16.wav; sourceTree = "<group>"; };
65B35DB8121C261E003EAD18 /* 17.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = 17.wav; sourceTree = "<group>"; };
65B35DB9121C261E003EAD18 /* 18.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = 18.wav; sourceTree = "<group>"; };
65B35DBA121C261E003EAD18 /* 19.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = 19.wav; sourceTree = "<group>"; };
65B35DBB121C261E003EAD18 /* 2.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = 2.wav; sourceTree = "<group>"; };
65B35DBC121C261E003EAD18 /* 20.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = 20.wav; sourceTree = "<group>"; };
65B35DBD121C261E003EAD18 /* 3.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = 3.wav; sourceTree = "<group>"; };
65B35DBE121C261E003EAD18 /* 30.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = 30.wav; sourceTree = "<group>"; };
65B35DBF121C261E003EAD18 /* 4.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = 4.wav; sourceTree = "<group>"; };
65B35DC0121C261E003EAD18 /* 40.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = 40.wav; sourceTree = "<group>"; };
65B35DC1121C261E003EAD18 /* 5.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = 5.wav; sourceTree = "<group>"; };
65B35DC2121C261E003EAD18 /* 50.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = 50.wav; sourceTree = "<group>"; };
65B35DC3121C261E003EAD18 /* 6.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = 6.wav; sourceTree = "<group>"; };
65B35DC4121C261E003EAD18 /* 60.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = 60.wav; sourceTree = "<group>"; };
65B35DC5121C261E003EAD18 /* 7.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = 7.wav; sourceTree = "<group>"; };
65B35DC6121C261E003EAD18 /* 70.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = 70.wav; sourceTree = "<group>"; };
65B35DC7121C261E003EAD18 /* 8.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = 8.wav; sourceTree = "<group>"; };
65B35DC8121C261E003EAD18 /* 80.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = 80.wav; sourceTree = "<group>"; };
65B35DC9121C261E003EAD18 /* 9.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = 9.wav; sourceTree = "<group>"; };
65B35DCA121C261E003EAD18 /* 90.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = 90.wav; sourceTree = "<group>"; };
65B35DCB121C261E003EAD18 /* aborted.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = aborted.wav; sourceTree = "<group>"; };
65B35DCC121C261E003EAD18 /* active.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = active.wav; sourceTree = "<group>"; };
65B35DCD121C261E003EAD18 /* alarmsound.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = alarmsound.wav; sourceTree = "<group>"; };
65B35DCE121C261E003EAD18 /* alert.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = alert.wav; sourceTree = "<group>"; };
65B35DCF121C261E003EAD18 /* altitude.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = altitude.wav; sourceTree = "<group>"; };
65B35DD0121C261E003EAD18 /* amps.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = amps.wav; sourceTree = "<group>"; };
65B35DD1121C261E003EAD18 /* aquired.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = aquired.wav; sourceTree = "<group>"; };
65B35DD2121C261E003EAD18 /* auto flight.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = "auto flight.wav"; sourceTree = "<group>"; };
65B35DD3121C261E003EAD18 /* battery.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = battery.wav; sourceTree = "<group>"; };
65B35DD4121C261E003EAD18 /* beepsound.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = beepsound.wav; sourceTree = "<group>"; };
65B35DD5121C261E003EAD18 /* camera.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = camera.wav; sourceTree = "<group>"; };
65B35DD6121C261E003EAD18 /* cancelled.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = cancelled.wav; sourceTree = "<group>"; };
65B35DD7121C261E003EAD18 /* changed.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = changed.wav; sourceTree = "<group>"; };
65B35DD8121C261E003EAD18 /* circle position.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = "circle position.wav"; sourceTree = "<group>"; };
65B35DD9121C261E003EAD18 /* cleared.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = cleared.wav; sourceTree = "<group>"; };
65B35DDA121C261E003EAD18 /* complete.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = complete.wav; sourceTree = "<group>"; };
65B35DDB121C261E003EAD18 /* connected.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = connected.wav; sourceTree = "<group>"; };
65B35DDC121C261E003EAD18 /* connection.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = connection.wav; sourceTree = "<group>"; };
65B35DDD121C261E003EAD18 /* control.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = control.wav; sourceTree = "<group>"; };
65B35DDE121C261E003EAD18 /* disabled.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = disabled.wav; sourceTree = "<group>"; };
65B35DDF121C261E003EAD18 /* disconnected.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = disconnected.wav; sourceTree = "<group>"; };
65B35DE0121C261E003EAD18 /* feet.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = feet.wav; sourceTree = "<group>"; };
65B35DE1121C261E003EAD18 /* figure eight.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = "figure eight.wav"; sourceTree = "<group>"; };
65B35DE2121C261E003EAD18 /* flight.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = flight.wav; sourceTree = "<group>"; };
65B35DE3121C261E003EAD18 /* geofence.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = geofence.wav; sourceTree = "<group>"; };
65B35DE4121C261E003EAD18 /* gps.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = gps.wav; sourceTree = "<group>"; };
65B35DE5121C261E003EAD18 /* ground station.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = "ground station.wav"; sourceTree = "<group>"; };
65B35DE6121C261E003EAD18 /* heading.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = heading.wav; sourceTree = "<group>"; };
65B35DE7121C261E003EAD18 /* height.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = height.wav; sourceTree = "<group>"; };
65B35DE8121C261E003EAD18 /* high.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = high.wav; sourceTree = "<group>"; };
65B35DE9121C261E003EAD18 /* hippodrome.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = hippodrome.wav; sourceTree = "<group>"; };
65B35DEA121C261E003EAD18 /* hold position.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = "hold position.wav"; sourceTree = "<group>"; };
65B35DEB121C261E003EAD18 /* home location.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = "home location.wav"; sourceTree = "<group>"; };
65B35DEC121C261E003EAD18 /* initialised.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = initialised.wav; sourceTree = "<group>"; };
65B35DED121C261E003EAD18 /* initiated.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = initiated.wav; sourceTree = "<group>"; };
65B35DEE121C261E003EAD18 /* KPH.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = KPH.wav; sourceTree = "<group>"; };
65B35DEF121C261E003EAD18 /* landing.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = landing.wav; sourceTree = "<group>"; };
65B35DF0121C261E003EAD18 /* launch.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = launch.wav; sourceTree = "<group>"; };
65B35DF1121C261E003EAD18 /* left.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = left.wav; sourceTree = "<group>"; };
65B35DF2121C261E003EAD18 /* logging.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = logging.wav; sourceTree = "<group>"; };
65B35DF3121C261E003EAD18 /* lost.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = lost.wav; sourceTree = "<group>"; };
65B35DF4121C261E003EAD18 /* low altitude.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = "low altitude.wav"; sourceTree = "<group>"; };
65B35DF5121C261E003EAD18 /* low battery.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = "low battery.wav"; sourceTree = "<group>"; };
65B35DF6121C261E003EAD18 /* low gps quality.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = "low gps quality.wav"; sourceTree = "<group>"; };
65B35DF7121C261E003EAD18 /* manual flight.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = "manual flight.wav"; sourceTree = "<group>"; };
65B35DF8121C261E003EAD18 /* maximum.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = maximum.wav; sourceTree = "<group>"; };
65B35DF9121C261E003EAD18 /* meters.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = meters.wav; sourceTree = "<group>"; };
65B35DFA121C261E003EAD18 /* minimum.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = minimum.wav; sourceTree = "<group>"; };
65B35DFB121C261E003EAD18 /* mode.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = mode.wav; sourceTree = "<group>"; };
65B35DFC121C261E003EAD18 /* MPH.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = MPH.wav; sourceTree = "<group>"; };
65B35DFD121C261E003EAD18 /* navigation.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = navigation.wav; sourceTree = "<group>"; };
65B35DFE121C261E003EAD18 /* openpilot.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = openpilot.wav; sourceTree = "<group>"; };
65B35DFF121C261E003EAD18 /* point.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = point.wav; sourceTree = "<group>"; };
65B35E00121C261E003EAD18 /* range.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = range.wav; sourceTree = "<group>"; };
65B35E01121C261E003EAD18 /* reached.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = reached.wav; sourceTree = "<group>"; };
65B35E02121C261E003EAD18 /* ready for flight.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = "ready for flight.wav"; sourceTree = "<group>"; };
65B35E03121C261E003EAD18 /* return home.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = "return home.wav"; sourceTree = "<group>"; };
65B35E04121C261E003EAD18 /* right.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = right.wav; sourceTree = "<group>"; };
65B35E05121C261E003EAD18 /* set.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = set.wav; sourceTree = "<group>"; };
65B35E06121C261E003EAD18 /* speed.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = speed.wav; sourceTree = "<group>"; };
65B35E07121C261E003EAD18 /* stabilization.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = stabilization.wav; sourceTree = "<group>"; };
65B35E08121C261E003EAD18 /* started.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = started.wav; sourceTree = "<group>"; };
65B35E09121C261E003EAD18 /* stopped.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = stopped.wav; sourceTree = "<group>"; };
65B35E0A121C261E003EAD18 /* takeoff.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = takeoff.wav; sourceTree = "<group>"; };
65B35E0B121C261E003EAD18 /* telemetry.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = telemetry.wav; sourceTree = "<group>"; };
65B35E0C121C261E003EAD18 /* time.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = time.wav; sourceTree = "<group>"; };
65B35E0D121C261E003EAD18 /* triggered.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = triggered.wav; sourceTree = "<group>"; };
65B35E0E121C261E003EAD18 /* uav.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = uav.wav; sourceTree = "<group>"; };
65B35E0F121C261E003EAD18 /* volts.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = volts.wav; sourceTree = "<group>"; };
65B35E10121C261E003EAD18 /* warning.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = warning.wav; sourceTree = "<group>"; };
65B35E11121C261E003EAD18 /* waypoint.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = waypoint.wav; sourceTree = "<group>"; };
65B35E12121C261E003EAD18 /* whoopsound.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = whoopsound.wav; sourceTree = "<group>"; };
65B35E13121C261E003EAD18 /* License.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = License.txt; sourceTree = "<group>"; };
65B35E15121C261E003EAD18 /* extract-mimetypes.xq */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "extract-mimetypes.xq"; sourceTree = "<group>"; };
65B35E16121C261E003EAD18 /* extract-mimetypes.xq.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "extract-mimetypes.xq.in"; sourceTree = "<group>"; };
65B35E17121C261E003EAD18 /* openpilotgcs_de.ts */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = openpilotgcs_de.ts; sourceTree = "<group>"; };
65B35E18121C261E003EAD18 /* openpilotgcs_es.ts */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = openpilotgcs_es.ts; sourceTree = "<group>"; };
65B35E19121C261E003EAD18 /* openpilotgcs_fr.ts */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = openpilotgcs_fr.ts; sourceTree = "<group>"; };
65B35E1A121C261E003EAD18 /* openpilotgcs_it.ts */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = openpilotgcs_it.ts; sourceTree = "<group>"; };
65B35E1B121C261E003EAD18 /* Readme.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Readme.txt; sourceTree = "<group>"; };
65B35E1C121C261E003EAD18 /* translations.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = translations.pro; sourceTree = "<group>"; };
65B35E1D121C261E003EAD18 /* share.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = share.pro; sourceTree = "<group>"; };
65B35E20121C261E003EAD18 /* app.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = app.pro; sourceTree = "<group>"; };
65B35E21121C261E003EAD18 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
65B35E22121C261E003EAD18 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = "<group>"; };
65B35E23121C261E003EAD18 /* openpilotgcs.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = openpilotgcs.icns; sourceTree = "<group>"; };
65B35E24121C261E003EAD18 /* openpilotgcs.ico */ = {isa = PBXFileReference; lastKnownFileType = image.ico; path = openpilotgcs.ico; sourceTree = "<group>"; };
65B35E25121C261E003EAD18 /* openpilotgcs.rc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = openpilotgcs.rc; sourceTree = "<group>"; };
65B35E26121C261E003EAD18 /* prifile.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = prifile.icns; sourceTree = "<group>"; };
65B35E27121C261E003EAD18 /* profile.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = profile.icns; sourceTree = "<group>"; };
65B35E2A121C261E003EAD18 /* HIDTest.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = HIDTest.pro; sourceTree = "<group>"; };
65B35E2B121C261E003EAD18 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = "<group>"; };
65B35E2D121C261E003EAD18 /* common.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = common.pri; sourceTree = "<group>"; };
65B35E2F121C261E003EAD18 /* accessmode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = accessmode.h; sourceTree = "<group>"; };
65B35E30121C261E003EAD18 /* alllayersoftype.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = alllayersoftype.cpp; sourceTree = "<group>"; };
65B35E31121C261E003EAD18 /* alllayersoftype.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = alllayersoftype.h; sourceTree = "<group>"; };
65B35E32121C261E003EAD18 /* cache.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = cache.cpp; sourceTree = "<group>"; };
65B35E33121C261E003EAD18 /* cache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cache.h; sourceTree = "<group>"; };
65B35E34121C261E003EAD18 /* cacheitemqueue.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = cacheitemqueue.cpp; sourceTree = "<group>"; };
65B35E35121C261E003EAD18 /* cacheitemqueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cacheitemqueue.h; sourceTree = "<group>"; };
65B35E36121C261E003EAD18 /* core.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = core.pro; sourceTree = "<group>"; };
65B35E37121C261E003EAD18 /* debugheader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = debugheader.h; sourceTree = "<group>"; };
65B35E38121C261E003EAD18 /* geodecoderstatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = geodecoderstatus.h; sourceTree = "<group>"; };
65B35E39121C261E003EAD18 /* kibertilecache.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = kibertilecache.cpp; sourceTree = "<group>"; };
65B35E3A121C261E003EAD18 /* kibertilecache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = kibertilecache.h; sourceTree = "<group>"; };
65B35E3B121C261E003EAD18 /* languagetype.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = languagetype.cpp; sourceTree = "<group>"; };
65B35E3C121C261E003EAD18 /* languagetype.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = languagetype.h; sourceTree = "<group>"; };
65B35E3D121C261E003EAD18 /* maptype.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = maptype.h; sourceTree = "<group>"; };
65B35E3E121C261E003EAD18 /* memorycache.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = memorycache.cpp; sourceTree = "<group>"; };
65B35E3F121C261E003EAD18 /* memorycache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = memorycache.h; sourceTree = "<group>"; };
65B35E40121C261E003EAD18 /* opmaps.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = opmaps.cpp; sourceTree = "<group>"; };
65B35E41121C261E003EAD18 /* opmaps.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opmaps.h; sourceTree = "<group>"; };
65B35E42121C261E003EAD18 /* placemark.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = placemark.cpp; sourceTree = "<group>"; };
65B35E43121C261E003EAD18 /* placemark.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = placemark.h; sourceTree = "<group>"; };
65B35E44121C261E003EAD18 /* point.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = point.cpp; sourceTree = "<group>"; };
65B35E45121C261E003EAD18 /* point.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = point.h; sourceTree = "<group>"; };
65B35E46121C261E003EAD18 /* providerstrings.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = providerstrings.cpp; sourceTree = "<group>"; };
65B35E47121C261E003EAD18 /* providerstrings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = providerstrings.h; sourceTree = "<group>"; };
65B35E48121C261E003EAD18 /* pureimage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pureimage.cpp; sourceTree = "<group>"; };
65B35E49121C261E003EAD18 /* pureimage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pureimage.h; sourceTree = "<group>"; };
65B35E4A121C261E003EAD18 /* pureimagecache.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pureimagecache.cpp; sourceTree = "<group>"; };
65B35E4B121C261E003EAD18 /* pureimagecache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pureimagecache.h; sourceTree = "<group>"; };
65B35E4C121C261E003EAD18 /* rawtile.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rawtile.cpp; sourceTree = "<group>"; };
65B35E4D121C261E003EAD18 /* rawtile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rawtile.h; sourceTree = "<group>"; };
65B35E4E121C261E003EAD18 /* size.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = size.cpp; sourceTree = "<group>"; };
65B35E4F121C261E003EAD18 /* size.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = size.h; sourceTree = "<group>"; };
65B35E50121C261E003EAD18 /* tilecachequeue.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tilecachequeue.cpp; sourceTree = "<group>"; };
65B35E51121C261E003EAD18 /* tilecachequeue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tilecachequeue.h; sourceTree = "<group>"; };
65B35E52121C261E003EAD18 /* urlfactory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = urlfactory.cpp; sourceTree = "<group>"; };
65B35E53121C261E003EAD18 /* urlfactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = urlfactory.h; sourceTree = "<group>"; };
65B35E55121C261E003EAD18 /* finaltest.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = finaltest.pro; sourceTree = "<group>"; };
65B35E56121C261E003EAD18 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = "<group>"; };
65B35E57121C261E003EAD18 /* mainwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mainwindow.cpp; sourceTree = "<group>"; };
65B35E58121C261E003EAD18 /* mainwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mainwindow.h; sourceTree = "<group>"; };
65B35E59121C261E003EAD18 /* mainwindow.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = mainwindow.ui; sourceTree = "<group>"; };
65B35E5A121C261E003EAD18 /* ui_mainwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ui_mainwindow.h; sourceTree = "<group>"; };
65B35E5C121C261E003EAD18 /* gettilestest.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = gettilestest.pro; sourceTree = "<group>"; };
65B35E5D121C261E003EAD18 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = "<group>"; };
65B35E5F121C261E003EAD18 /* copyrightstrings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = copyrightstrings.h; sourceTree = "<group>"; };
65B35E60121C261E003EAD18 /* core.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = core.cpp; sourceTree = "<group>"; };
65B35E61121C261E003EAD18 /* core.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = core.h; sourceTree = "<group>"; };
65B35E62121C261E003EAD18 /* debugheader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = debugheader.h; sourceTree = "<group>"; };
65B35E63121C261E003EAD18 /* internals.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = internals.pro; sourceTree = "<group>"; };
65B35E64121C261E003EAD18 /* loadtask.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = loadtask.cpp; sourceTree = "<group>"; };
65B35E65121C261E003EAD18 /* loadtask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = loadtask.h; sourceTree = "<group>"; };
65B35E66121C261E003EAD18 /* MouseWheelZoomType.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MouseWheelZoomType.cpp; sourceTree = "<group>"; };
65B35E67121C261E003EAD18 /* mousewheelzoomtype.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mousewheelzoomtype.h; sourceTree = "<group>"; };
65B35E68121C261E003EAD18 /* pointlatlng.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pointlatlng.cpp; sourceTree = "<group>"; };
65B35E69121C261E003EAD18 /* pointlatlng.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pointlatlng.h; sourceTree = "<group>"; };
65B35E6B121C261E003EAD18 /* lks94projection.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = lks94projection.cpp; sourceTree = "<group>"; };
65B35E6C121C261E003EAD18 /* lks94projection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lks94projection.h; sourceTree = "<group>"; };
65B35E6D121C261E003EAD18 /* mercatorprojection.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mercatorprojection.cpp; sourceTree = "<group>"; };
65B35E6E121C261E003EAD18 /* mercatorprojection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mercatorprojection.h; sourceTree = "<group>"; };
65B35E6F121C261E003EAD18 /* mercatorprojectionyandex.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mercatorprojectionyandex.cpp; sourceTree = "<group>"; };
65B35E70121C261E003EAD18 /* mercatorprojectionyandex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mercatorprojectionyandex.h; sourceTree = "<group>"; };
65B35E71121C261E003EAD18 /* platecarreeprojection.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = platecarreeprojection.cpp; sourceTree = "<group>"; };
65B35E72121C261E003EAD18 /* platecarreeprojection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = platecarreeprojection.h; sourceTree = "<group>"; };
65B35E73121C261E003EAD18 /* platecarreeprojectionpergo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = platecarreeprojectionpergo.cpp; sourceTree = "<group>"; };
65B35E74121C261E003EAD18 /* platecarreeprojectionpergo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = platecarreeprojectionpergo.h; sourceTree = "<group>"; };
65B35E75121C261E003EAD18 /* pureprojection.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pureprojection.cpp; sourceTree = "<group>"; };
65B35E76121C261E003EAD18 /* pureprojection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pureprojection.h; sourceTree = "<group>"; };
65B35E77121C261E003EAD18 /* rectangle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rectangle.cpp; sourceTree = "<group>"; };
65B35E78121C261E003EAD18 /* rectangle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rectangle.h; sourceTree = "<group>"; };
65B35E79121C261E003EAD18 /* rectlatlng.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rectlatlng.cpp; sourceTree = "<group>"; };
65B35E7A121C261E003EAD18 /* rectlatlng.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rectlatlng.h; sourceTree = "<group>"; };
65B35E7B121C261E003EAD18 /* sizelatlng.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sizelatlng.cpp; sourceTree = "<group>"; };
65B35E7C121C261E003EAD18 /* sizelatlng.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sizelatlng.h; sourceTree = "<group>"; };
65B35E7D121C261E003EAD18 /* tile.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tile.cpp; sourceTree = "<group>"; };
65B35E7E121C261E003EAD18 /* tile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tile.h; sourceTree = "<group>"; };
65B35E7F121C261E003EAD18 /* tilematrix.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tilematrix.cpp; sourceTree = "<group>"; };
65B35E80121C261E003EAD18 /* tilematrix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tilematrix.h; sourceTree = "<group>"; };
65B35E82121C261E003EAD18 /* mapgraphicitem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mapgraphicitem.cpp; sourceTree = "<group>"; };
65B35E83121C261E003EAD18 /* mapgraphicitem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mapgraphicitem.h; sourceTree = "<group>"; };
65B35E84121C261E003EAD18 /* mapresources.qrc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = mapresources.qrc; sourceTree = "<group>"; };
65B35E85121C261E003EAD18 /* mapwidget.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = mapwidget.pro; sourceTree = "<group>"; };
65B35E86121C261E003EAD18 /* opmapcontrol.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = opmapcontrol.cpp; sourceTree = "<group>"; };
65B35E87121C261E003EAD18 /* opmapcontrol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opmapcontrol.h; sourceTree = "<group>"; };
65B35E88121C261E003EAD18 /* opmapwidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = opmapwidget.cpp; sourceTree = "<group>"; };
65B35E89121C261E003EAD18 /* opmapwidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opmapwidget.h; sourceTree = "<group>"; };
65B35E8A121C261E003EAD18 /* OPMapControl.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = OPMapControl.pro; sourceTree = "<group>"; };
65B35E8C121C261E003EAD18 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = "<group>"; };
65B35E8D121C261E003EAD18 /* teste.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = teste.pro; sourceTree = "<group>"; };
65B35E8F121C261E003EAD18 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = "<group>"; };
65B35E90121C261E003EAD18 /* map.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = map.cpp; sourceTree = "<group>"; };
65B35E91121C261E003EAD18 /* map.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = map.h; sourceTree = "<group>"; };
65B35E92121C261E003EAD18 /* widgettest.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = widgettest.pro; sourceTree = "<group>"; };
65B35E95121C261E003EAD18 /* DocumentationHelper.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DocumentationHelper.pro; sourceTree = "<group>"; };
65B35E96121C261E003EAD18 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = "<group>"; };
65B35E97121C261E003EAD18 /* mainwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mainwindow.cpp; sourceTree = "<group>"; };
65B35E98121C261E003EAD18 /* mainwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mainwindow.h; sourceTree = "<group>"; };
65B35E99121C261E003EAD18 /* mainwindow.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = mainwindow.ui; sourceTree = "<group>"; };
65B35E9C121C261E003EAD18 /* aggregate.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = aggregate.cpp; sourceTree = "<group>"; };
65B35E9D121C261E003EAD18 /* aggregate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aggregate.h; sourceTree = "<group>"; };
65B35E9E121C261E003EAD18 /* aggregation.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = aggregation.pri; sourceTree = "<group>"; };
65B35E9F121C261E003EAD18 /* aggregation.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = aggregation.pro; sourceTree = "<group>"; };
65B35EA0121C261E003EAD18 /* aggregation_global.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aggregation_global.h; sourceTree = "<group>"; };
65B35EA2121C261E003EAD18 /* examples.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = examples.pro; sourceTree = "<group>"; };
65B35EA4121C261E003EAD18 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = "<group>"; };
65B35EA5121C261E003EAD18 /* main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = main.h; sourceTree = "<group>"; };
65B35EA6121C261E003EAD18 /* main.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.ui; sourceTree = "<group>"; };
65B35EA7121C261E003EAD18 /* myinterfaces.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = myinterfaces.h; sourceTree = "<group>"; };
65B35EA8121C261E003EAD18 /* text.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = text.pro; sourceTree = "<group>"; };
65B35EAA121C261E003EAD18 /* extensionsystem.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = extensionsystem.pri; sourceTree = "<group>"; };
65B35EAB121C261E003EAD18 /* extensionsystem.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = extensionsystem.pro; sourceTree = "<group>"; };
65B35EAC121C261E003EAD18 /* extensionsystem_dependencies.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = extensionsystem_dependencies.pri; sourceTree = "<group>"; };
65B35EAD121C261E003EAD18 /* extensionsystem_global.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = extensionsystem_global.h; sourceTree = "<group>"; };
65B35EAF121C261E003EAD18 /* error.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = error.png; sourceTree = "<group>"; };
65B35EB0121C261E003EAD18 /* ok.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ok.png; sourceTree = "<group>"; };
65B35EB1121C261E003EAD18 /* iplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = iplugin.cpp; sourceTree = "<group>"; };
65B35EB2121C261E003EAD18 /* iplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = iplugin.h; sourceTree = "<group>"; };
65B35EB3121C261E003EAD18 /* iplugin_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = iplugin_p.h; sourceTree = "<group>"; };
65B35EB4121C261E003EAD18 /* optionsparser.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = optionsparser.cpp; sourceTree = "<group>"; };
65B35EB5121C261E003EAD18 /* optionsparser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = optionsparser.h; sourceTree = "<group>"; };
65B35EB6121C261E003EAD18 /* plugindetailsview.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = plugindetailsview.cpp; sourceTree = "<group>"; };
65B35EB7121C261E003EAD18 /* plugindetailsview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = plugindetailsview.h; sourceTree = "<group>"; };
65B35EB8121C261E003EAD18 /* plugindetailsview.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = plugindetailsview.ui; sourceTree = "<group>"; };
65B35EB9121C261E003EAD18 /* pluginerrorview.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pluginerrorview.cpp; sourceTree = "<group>"; };
65B35EBA121C261E003EAD18 /* pluginerrorview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pluginerrorview.h; sourceTree = "<group>"; };
65B35EBB121C261E003EAD18 /* pluginerrorview.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pluginerrorview.ui; sourceTree = "<group>"; };
65B35EBC121C261E003EAD18 /* pluginmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pluginmanager.cpp; sourceTree = "<group>"; };
65B35EBD121C261E003EAD18 /* pluginmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pluginmanager.h; sourceTree = "<group>"; };
65B35EBE121C261E003EAD18 /* pluginmanager_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pluginmanager_p.h; sourceTree = "<group>"; };
65B35EBF121C261E003EAD18 /* pluginspec.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pluginspec.cpp; sourceTree = "<group>"; };
65B35EC0121C261E003EAD18 /* pluginspec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pluginspec.h; sourceTree = "<group>"; };
65B35EC1121C261E003EAD18 /* pluginspec_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pluginspec_p.h; sourceTree = "<group>"; };
65B35EC2121C261E003EAD18 /* pluginview.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pluginview.cpp; sourceTree = "<group>"; };
65B35EC3121C261E003EAD18 /* pluginview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pluginview.h; sourceTree = "<group>"; };
65B35EC4121C261E003EAD18 /* pluginview.qrc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pluginview.qrc; sourceTree = "<group>"; };
65B35EC5121C261E003EAD18 /* pluginview.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = pluginview.ui; sourceTree = "<group>"; };
65B35EC6121C261E003EAD18 /* pluginview_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pluginview_p.h; sourceTree = "<group>"; };
65B35EC9121C261E003EAD18 /* auto.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = auto.pro; sourceTree = "<group>"; };
65B35ECC121C261E003EAD18 /* circularplugins.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = circularplugins.pro; sourceTree = "<group>"; };
65B35ECE121C261E003EAD18 /* plugin.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = plugin.xml; sourceTree = "<group>"; };
65B35ECF121C261E003EAD18 /* plugin1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = plugin1.cpp; sourceTree = "<group>"; };
65B35ED0121C261E003EAD18 /* plugin1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = plugin1.h; sourceTree = "<group>"; };
65B35ED1121C261E003EAD18 /* plugin1.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = plugin1.pro; sourceTree = "<group>"; };
65B35ED3121C261E003EAD18 /* plugin.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = plugin.xml; sourceTree = "<group>"; };
65B35ED4121C261E003EAD18 /* plugin2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = plugin2.cpp; sourceTree = "<group>"; };
65B35ED5121C261E003EAD18 /* plugin2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = plugin2.h; sourceTree = "<group>"; };
65B35ED6121C261E003EAD18 /* plugin2.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = plugin2.pro; sourceTree = "<group>"; };
65B35ED8121C261E003EAD18 /* plugin.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = plugin.xml; sourceTree = "<group>"; };
65B35ED9121C261E003EAD18 /* plugin3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = plugin3.cpp; sourceTree = "<group>"; };
65B35EDA121C261E003EAD18 /* plugin3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = plugin3.h; sourceTree = "<group>"; };
65B35EDB121C261E003EAD18 /* plugin3.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = plugin3.pro; sourceTree = "<group>"; };
65B35EDD121C261E003EAD18 /* correctplugins1.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = correctplugins1.pro; sourceTree = "<group>"; };
65B35EDF121C261E003EAD18 /* plugin.spec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = plugin.spec; sourceTree = "<group>"; };
65B35EE0121C261E003EAD18 /* plugin1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = plugin1.cpp; sourceTree = "<group>"; };
65B35EE1121C261E003EAD18 /* plugin1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = plugin1.h; sourceTree = "<group>"; };
65B35EE2121C261E003EAD18 /* plugin1.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = plugin1.pro; sourceTree = "<group>"; };
65B35EE4121C261E003EAD18 /* plugin.spec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = plugin.spec; sourceTree = "<group>"; };
65B35EE5121C261E003EAD18 /* plugin2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = plugin2.cpp; sourceTree = "<group>"; };
65B35EE6121C261E003EAD18 /* plugin2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = plugin2.h; sourceTree = "<group>"; };
65B35EE7121C261E003EAD18 /* plugin2.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = plugin2.pro; sourceTree = "<group>"; };
65B35EE9121C261E003EAD18 /* plugin.spec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = plugin.spec; sourceTree = "<group>"; };
65B35EEA121C261E003EAD18 /* plugin3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = plugin3.cpp; sourceTree = "<group>"; };
65B35EEB121C261E003EAD18 /* plugin3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = plugin3.h; sourceTree = "<group>"; };
65B35EEC121C261E003EAD18 /* plugin3.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = plugin3.pro; sourceTree = "<group>"; };
65B35EED121C261E003EAD18 /* pluginmanager.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pluginmanager.pro; sourceTree = "<group>"; };
65B35EF0121C261E003EAD18 /* myplug.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = myplug.xml; sourceTree = "<group>"; };
65B35EF1121C261E003EAD18 /* otherplugin.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = otherplugin.xml; sourceTree = "<group>"; };
65B35EF2121C261E003EAD18 /* plugin1.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = plugin1.xml; sourceTree = "<group>"; };
65B35EF3121C261E003EAD18 /* test.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = test.pro; sourceTree = "<group>"; };
65B35EF4121C261E003EAD18 /* test.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = test.sh; sourceTree = "<group>"; };
65B35EF5121C261E003EAD18 /* tst_pluginmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tst_pluginmanager.cpp; sourceTree = "<group>"; };
65B35EF7121C261E003EAD18 /* pluginspec.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pluginspec.pro; sourceTree = "<group>"; };
65B35EF8121C261E003EAD18 /* test.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = test.pro; sourceTree = "<group>"; };
65B35EF9121C261E003EAD18 /* test.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = test.sh; sourceTree = "<group>"; };
65B35EFB121C261E003EAD18 /* spec1.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = spec1.xml; sourceTree = "<group>"; };
65B35EFC121C261E003EAD18 /* spec2.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = spec2.xml; sourceTree = "<group>"; };
65B35EFD121C261E003EAD18 /* spec3.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = spec3.xml; sourceTree = "<group>"; };
65B35EFE121C261E003EAD18 /* spec4.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = spec4.xml; sourceTree = "<group>"; };
65B35EFF121C261E003EAD18 /* spec5.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = spec5.xml; sourceTree = "<group>"; };
65B35F01121C261E003EAD18 /* spec.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = spec.xml; sourceTree = "<group>"; };
65B35F03121C261E003EAD18 /* testplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = testplugin.cpp; sourceTree = "<group>"; };
65B35F04121C261E003EAD18 /* testplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = testplugin.h; sourceTree = "<group>"; };
65B35F05121C261E003EAD18 /* testplugin.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = testplugin.pro; sourceTree = "<group>"; };
65B35F06121C261E003EAD18 /* testplugin.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = testplugin.xml; sourceTree = "<group>"; };
65B35F07121C261E003EAD18 /* testplugin_global.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = testplugin_global.h; sourceTree = "<group>"; };
65B35F09121C261E003EAD18 /* simplespec.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = simplespec.xml; sourceTree = "<group>"; };
65B35F0A121C261E003EAD18 /* spec1.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = spec1.xml; sourceTree = "<group>"; };
65B35F0B121C261E003EAD18 /* spec2.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = spec2.xml; sourceTree = "<group>"; };
65B35F0C121C261E003EAD18 /* spec_wrong1.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = spec_wrong1.xml; sourceTree = "<group>"; };
65B35F0D121C261E003EAD18 /* spec_wrong2.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = spec_wrong2.xml; sourceTree = "<group>"; };
65B35F0E121C261E003EAD18 /* spec_wrong3.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = spec_wrong3.xml; sourceTree = "<group>"; };
65B35F0F121C261E003EAD18 /* spec_wrong4.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = spec_wrong4.xml; sourceTree = "<group>"; };
65B35F10121C261E003EAD18 /* spec_wrong5.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = spec_wrong5.xml; sourceTree = "<group>"; };
65B35F11121C261E003EAD18 /* tst_pluginspec.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tst_pluginspec.cpp; sourceTree = "<group>"; };
65B35F12121C261E003EAD18 /* extensionsystem_test.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = extensionsystem_test.pri; sourceTree = "<group>"; };
65B35F14121C261E003EAD18 /* manual.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = manual.pro; sourceTree = "<group>"; };
65B35F16121C261E003EAD18 /* plugindialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = plugindialog.cpp; sourceTree = "<group>"; };
65B35F17121C261E003EAD18 /* plugindialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = plugindialog.h; sourceTree = "<group>"; };
65B35F1A121C261E003EAD18 /* plugin.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = plugin.xml; sourceTree = "<group>"; };
65B35F1B121C261E003EAD18 /* plugin1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = plugin1.cpp; sourceTree = "<group>"; };
65B35F1C121C261E003EAD18 /* plugin1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = plugin1.h; sourceTree = "<group>"; };
65B35F1D121C261E003EAD18 /* plugin1.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = plugin1.pro; sourceTree = "<group>"; };
65B35F1F121C261E003EAD18 /* plugin.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = plugin.xml; sourceTree = "<group>"; };
65B35F20121C261E003EAD18 /* plugin2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = plugin2.cpp; sourceTree = "<group>"; };
65B35F21121C261E003EAD18 /* plugin2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = plugin2.h; sourceTree = "<group>"; };
65B35F22121C261E003EAD18 /* plugin2.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = plugin2.pro; sourceTree = "<group>"; };
65B35F24121C261E003EAD18 /* plugin.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = plugin.xml; sourceTree = "<group>"; };
65B35F25121C261E003EAD18 /* plugin3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = plugin3.cpp; sourceTree = "<group>"; };
65B35F26121C261E003EAD18 /* plugin3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = plugin3.h; sourceTree = "<group>"; };
65B35F27121C261E003EAD18 /* plugin3.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = plugin3.pro; sourceTree = "<group>"; };
65B35F29121C261E003EAD18 /* plugin.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = plugin.xml; sourceTree = "<group>"; };
65B35F2A121C261E003EAD18 /* plugins.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = plugins.pro; sourceTree = "<group>"; };
65B35F2B121C261E003EAD18 /* pluginview.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pluginview.pro; sourceTree = "<group>"; };
65B35F2C121C261E003EAD18 /* test.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = test.pro; sourceTree = "<group>"; };
65B35F2D121C261E003EAD18 /* test.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = test.sh; sourceTree = "<group>"; };
65B35F2E121C261E003EAD18 /* test.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = test.pro; sourceTree = "<group>"; };
65B35F31121C261E003EAD18 /* glc_3dwidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_3dwidget.cpp; sourceTree = "<group>"; };
65B35F32121C261E003EAD18 /* glc_3dwidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_3dwidget.h; sourceTree = "<group>"; };
65B35F33121C261E003EAD18 /* glc_3dwidgetmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_3dwidgetmanager.cpp; sourceTree = "<group>"; };
65B35F34121C261E003EAD18 /* glc_3dwidgetmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_3dwidgetmanager.h; sourceTree = "<group>"; };
65B35F35121C261E003EAD18 /* glc_3dwidgetmanagerhandle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_3dwidgetmanagerhandle.cpp; sourceTree = "<group>"; };
65B35F36121C261E003EAD18 /* glc_3dwidgetmanagerhandle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_3dwidgetmanagerhandle.h; sourceTree = "<group>"; };
65B35F37121C261E003EAD18 /* glc_abstractmanipulator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_abstractmanipulator.cpp; sourceTree = "<group>"; };
65B35F38121C261E003EAD18 /* glc_abstractmanipulator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_abstractmanipulator.h; sourceTree = "<group>"; };
65B35F39121C261E003EAD18 /* glc_axis.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_axis.cpp; sourceTree = "<group>"; };
65B35F3A121C261E003EAD18 /* glc_axis.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_axis.h; sourceTree = "<group>"; };
65B35F3B121C261E003EAD18 /* glc_cuttingplane.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_cuttingplane.cpp; sourceTree = "<group>"; };
65B35F3C121C261E003EAD18 /* glc_cuttingplane.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_cuttingplane.h; sourceTree = "<group>"; };
65B35F3D121C261E003EAD18 /* glc_pullmanipulator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_pullmanipulator.cpp; sourceTree = "<group>"; };
65B35F3E121C261E003EAD18 /* glc_pullmanipulator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_pullmanipulator.h; sourceTree = "<group>"; };
65B35F3F121C261E003EAD18 /* glc_rotationmanipulator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_rotationmanipulator.cpp; sourceTree = "<group>"; };
65B35F40121C261E003EAD18 /* glc_rotationmanipulator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_rotationmanipulator.h; sourceTree = "<group>"; };
65B35F43121C261E003EAD18 /* glext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glext.h; sourceTree = "<group>"; };
65B35F45121C261E003EAD18 /* atmosphere.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = atmosphere.c; sourceTree = "<group>"; };
65B35F46121C261E003EAD18 /* atmosphere.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = atmosphere.h; sourceTree = "<group>"; };
65B35F47121C261E003EAD18 /* AUTHORS */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AUTHORS; sourceTree = "<group>"; };
65B35F48121C261E003EAD18 /* background.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = background.c; sourceTree = "<group>"; };
65B35F49121C261E003EAD18 /* background.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = background.h; sourceTree = "<group>"; };
65B35F4A121C261E003EAD18 /* camera.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = camera.c; sourceTree = "<group>"; };
65B35F4B121C261E003EAD18 /* camera.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = camera.h; sourceTree = "<group>"; };
65B35F4C121C261E003EAD18 /* ChangeLog */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ChangeLog; sourceTree = "<group>"; };
65B35F4D121C261E003EAD18 /* chunk.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = chunk.c; sourceTree = "<group>"; };
65B35F4E121C261E003EAD18 /* chunk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chunk.h; sourceTree = "<group>"; };
65B35F4F121C261E003EAD18 /* chunktable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chunktable.h; sourceTree = "<group>"; };
65B35F50121C261E003EAD18 /* ease.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ease.c; sourceTree = "<group>"; };
65B35F51121C261E003EAD18 /* ease.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ease.h; sourceTree = "<group>"; };
65B35F52121C261E003EAD18 /* file.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = file.c; sourceTree = "<group>"; };
65B35F53121C261E003EAD18 /* file.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = file.h; sourceTree = "<group>"; };
65B35F54121C261E003EAD18 /* io.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = io.c; sourceTree = "<group>"; };
65B35F55121C261E003EAD18 /* io.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = io.h; sourceTree = "<group>"; };
65B35F56121C261E003EAD18 /* light.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = light.c; sourceTree = "<group>"; };
65B35F57121C261E003EAD18 /* light.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = light.h; sourceTree = "<group>"; };
65B35F58121C261E003EAD18 /* material.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = material.c; sourceTree = "<group>"; };
65B35F59121C261E003EAD18 /* material.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = material.h; sourceTree = "<group>"; };
65B35F5A121C261E003EAD18 /* matrix.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = matrix.c; sourceTree = "<group>"; };
65B35F5B121C261E003EAD18 /* matrix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = matrix.h; sourceTree = "<group>"; };
65B35F5C121C261E003EAD18 /* mesh.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mesh.c; sourceTree = "<group>"; };
65B35F5D121C261E003EAD18 /* mesh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mesh.h; sourceTree = "<group>"; };
65B35F5E121C261E003EAD18 /* node.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = node.c; sourceTree = "<group>"; };
65B35F5F121C261E003EAD18 /* node.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = node.h; sourceTree = "<group>"; };
65B35F60121C261E003EAD18 /* quat.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = quat.c; sourceTree = "<group>"; };
65B35F61121C261E003EAD18 /* quat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = quat.h; sourceTree = "<group>"; };
65B35F62121C261E003EAD18 /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README; sourceTree = "<group>"; };
65B35F63121C261E003EAD18 /* shadow.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = shadow.c; sourceTree = "<group>"; };
65B35F64121C261E003EAD18 /* shadow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shadow.h; sourceTree = "<group>"; };
65B35F65121C261E003EAD18 /* tcb.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tcb.c; sourceTree = "<group>"; };
65B35F66121C261E003EAD18 /* tcb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tcb.h; sourceTree = "<group>"; };
65B35F67121C261E003EAD18 /* tracks.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tracks.c; sourceTree = "<group>"; };
65B35F68121C261E003EAD18 /* tracks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tracks.h; sourceTree = "<group>"; };
65B35F69121C261E003EAD18 /* types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = types.h; sourceTree = "<group>"; };
65B35F6A121C261E003EAD18 /* vector.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = vector.c; sourceTree = "<group>"; };
65B35F6B121C261E003EAD18 /* vector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vector.h; sourceTree = "<group>"; };
65B35F6C121C261E003EAD18 /* viewport.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = viewport.c; sourceTree = "<group>"; };
65B35F6D121C261E003EAD18 /* viewport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = viewport.h; sourceTree = "<group>"; };
65B35F6F121C261E003EAD18 /* crypt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = crypt.h; sourceTree = "<group>"; };
65B35F70121C261E003EAD18 /* ioapi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ioapi.c; sourceTree = "<group>"; };
65B35F71121C261E003EAD18 /* ioapi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ioapi.h; sourceTree = "<group>"; };
65B35F72121C261E003EAD18 /* quazip.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = quazip.cpp; sourceTree = "<group>"; };
65B35F73121C261E003EAD18 /* quazip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = quazip.h; sourceTree = "<group>"; };
65B35F74121C261E003EAD18 /* quazipfile.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = quazipfile.cpp; sourceTree = "<group>"; };
65B35F75121C261E003EAD18 /* quazipfile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = quazipfile.h; sourceTree = "<group>"; };
65B35F76121C261E003EAD18 /* quazipfileinfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = quazipfileinfo.h; sourceTree = "<group>"; };
65B35F77121C261E003EAD18 /* quazipnewinfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = quazipnewinfo.cpp; sourceTree = "<group>"; };
65B35F78121C261E003EAD18 /* quazipnewinfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = quazipnewinfo.h; sourceTree = "<group>"; };
65B35F79121C261E003EAD18 /* unzip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = unzip.c; sourceTree = "<group>"; };
65B35F7A121C261E003EAD18 /* unzip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unzip.h; sourceTree = "<group>"; };
65B35F7B121C261E003EAD18 /* zip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = zip.c; sourceTree = "<group>"; };
65B35F7C121C261E003EAD18 /* zip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = zip.h; sourceTree = "<group>"; };
65B35F7E121C261E003EAD18 /* adler32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = adler32.c; sourceTree = "<group>"; };
65B35F7F121C261E003EAD18 /* algorithm.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = algorithm.txt; sourceTree = "<group>"; };
65B35F80121C261E003EAD18 /* ChangeLog */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ChangeLog; sourceTree = "<group>"; };
65B35F81121C261E003EAD18 /* compress.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = compress.c; sourceTree = "<group>"; };
65B35F82121C261E003EAD18 /* configure */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = configure; sourceTree = "<group>"; };
65B35F83121C261E003EAD18 /* crc32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = crc32.c; sourceTree = "<group>"; };
65B35F84121C261E003EAD18 /* crc32.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = crc32.h; sourceTree = "<group>"; };
65B35F85121C261E003EAD18 /* deflate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = deflate.c; sourceTree = "<group>"; };
65B35F86121C261E003EAD18 /* deflate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = deflate.h; sourceTree = "<group>"; };
65B35F87121C261E003EAD18 /* example.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = example.c; sourceTree = "<group>"; };
65B35F88121C261E003EAD18 /* FAQ */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = FAQ; sourceTree = "<group>"; };
65B35F89121C261E003EAD18 /* gzio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gzio.c; sourceTree = "<group>"; };
65B35F8A121C261E003EAD18 /* INDEX */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = INDEX; sourceTree = "<group>"; };
65B35F8B121C261E003EAD18 /* infback.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = infback.c; sourceTree = "<group>"; };
65B35F8C121C261E003EAD18 /* inffast.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = inffast.c; sourceTree = "<group>"; };
65B35F8D121C261E003EAD18 /* inffast.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inffast.h; sourceTree = "<group>"; };
65B35F8E121C261E003EAD18 /* inffixed.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inffixed.h; sourceTree = "<group>"; };
65B35F8F121C261E003EAD18 /* inflate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = inflate.c; sourceTree = "<group>"; };
65B35F90121C261E003EAD18 /* inflate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inflate.h; sourceTree = "<group>"; };
65B35F91121C261E003EAD18 /* inftrees.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = inftrees.c; sourceTree = "<group>"; };
65B35F92121C261E003EAD18 /* inftrees.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inftrees.h; sourceTree = "<group>"; };
65B35F93121C261E003EAD18 /* make_vms.com */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = make_vms.com; sourceTree = "<group>"; };
65B35F94121C261E003EAD18 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
65B35F95121C261E003EAD18 /* Makefile.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.in; sourceTree = "<group>"; };
65B35F96121C261E003EAD18 /* minigzip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = minigzip.c; sourceTree = "<group>"; };
65B35F97121C261E003EAD18 /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README; sourceTree = "<group>"; };
65B35F98121C261E003EAD18 /* trees.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = trees.c; sourceTree = "<group>"; };
65B35F99121C261E003EAD18 /* trees.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = trees.h; sourceTree = "<group>"; };
65B35F9A121C261E003EAD18 /* uncompr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = uncompr.c; sourceTree = "<group>"; };
65B35F9B121C261E003EAD18 /* zconf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = zconf.h; sourceTree = "<group>"; };
65B35F9C121C261E003EAD18 /* zconf.in.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = zconf.in.h; sourceTree = "<group>"; };
65B35F9D121C261E003EAD18 /* zlib.3 */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = zlib.3; sourceTree = "<group>"; };
65B35F9E121C261E003EAD18 /* zlib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = zlib.h; sourceTree = "<group>"; };
65B35F9F121C261E003EAD18 /* zutil.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = zutil.c; sourceTree = "<group>"; };
65B35FA0121C261E003EAD18 /* zutil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = zutil.h; sourceTree = "<group>"; };
65B35FA2121C261E003EAD18 /* COPYING */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = COPYING; sourceTree = "<group>"; };
65B35FA4121C261E003EAD18 /* glc_3drep.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_3drep.cpp; sourceTree = "<group>"; };
65B35FA5121C261E003EAD18 /* glc_3drep.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_3drep.h; sourceTree = "<group>"; };
65B35FA6121C261E003EAD18 /* glc_arrow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_arrow.cpp; sourceTree = "<group>"; };
65B35FA7121C261E003EAD18 /* glc_arrow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_arrow.h; sourceTree = "<group>"; };
65B35FA8121C261E003EAD18 /* glc_box.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_box.cpp; sourceTree = "<group>"; };
65B35FA9121C261E003EAD18 /* glc_box.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_box.h; sourceTree = "<group>"; };
65B35FAA121C261E003EAD18 /* glc_bsrep.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_bsrep.cpp; sourceTree = "<group>"; };
65B35FAB121C261E003EAD18 /* glc_bsrep.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_bsrep.h; sourceTree = "<group>"; };
65B35FAC121C261E003EAD18 /* glc_circle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_circle.cpp; sourceTree = "<group>"; };
65B35FAD121C261E003EAD18 /* glc_circle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_circle.h; sourceTree = "<group>"; };
65B35FAE121C261E003EAD18 /* glc_cone.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_cone.cpp; sourceTree = "<group>"; };
65B35FAF121C261E003EAD18 /* glc_cone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_cone.h; sourceTree = "<group>"; };
65B35FB0121C261E003EAD18 /* glc_cylinder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_cylinder.cpp; sourceTree = "<group>"; };
65B35FB1121C261E003EAD18 /* glc_cylinder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_cylinder.h; sourceTree = "<group>"; };
65B35FB2121C261E003EAD18 /* glc_disc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_disc.cpp; sourceTree = "<group>"; };
65B35FB3121C261E003EAD18 /* glc_disc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_disc.h; sourceTree = "<group>"; };
65B35FB4121C261E003EAD18 /* glc_geometry.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_geometry.cpp; sourceTree = "<group>"; };
65B35FB5121C261E003EAD18 /* glc_geometry.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_geometry.h; sourceTree = "<group>"; };
65B35FB6121C261E003EAD18 /* glc_line.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_line.cpp; sourceTree = "<group>"; };
65B35FB7121C261E003EAD18 /* glc_line.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_line.h; sourceTree = "<group>"; };
65B35FB8121C261E003EAD18 /* glc_lod.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_lod.cpp; sourceTree = "<group>"; };
65B35FB9121C261E003EAD18 /* glc_lod.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_lod.h; sourceTree = "<group>"; };
65B35FBA121C261E003EAD18 /* glc_mesh.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_mesh.cpp; sourceTree = "<group>"; };
65B35FBB121C261E003EAD18 /* glc_mesh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_mesh.h; sourceTree = "<group>"; };
65B35FBC121C261E003EAD18 /* glc_meshdata.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_meshdata.cpp; sourceTree = "<group>"; };
65B35FBD121C261E003EAD18 /* glc_meshdata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_meshdata.h; sourceTree = "<group>"; };
65B35FBE121C261E003EAD18 /* glc_point.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_point.cpp; sourceTree = "<group>"; };
65B35FBF121C261E003EAD18 /* glc_point.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_point.h; sourceTree = "<group>"; };
65B35FC0121C261E003EAD18 /* glc_pointsprite.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_pointsprite.cpp; sourceTree = "<group>"; };
65B35FC1121C261E003EAD18 /* glc_pointsprite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_pointsprite.h; sourceTree = "<group>"; };
65B35FC2121C261E003EAD18 /* glc_polylines.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_polylines.cpp; sourceTree = "<group>"; };
65B35FC3121C261E003EAD18 /* glc_polylines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_polylines.h; sourceTree = "<group>"; };
65B35FC4121C261E003EAD18 /* glc_primitivegroup.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_primitivegroup.cpp; sourceTree = "<group>"; };
65B35FC5121C261E003EAD18 /* glc_primitivegroup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_primitivegroup.h; sourceTree = "<group>"; };
65B35FC6121C261E003EAD18 /* glc_rectangle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_rectangle.cpp; sourceTree = "<group>"; };
65B35FC7121C261E003EAD18 /* glc_rectangle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_rectangle.h; sourceTree = "<group>"; };
65B35FC8121C261E003EAD18 /* glc_rep.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_rep.cpp; sourceTree = "<group>"; };
65B35FC9121C261E003EAD18 /* glc_rep.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_rep.h; sourceTree = "<group>"; };
65B35FCA121C261E003EAD18 /* glc_sphere.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_sphere.cpp; sourceTree = "<group>"; };
65B35FCB121C261E003EAD18 /* glc_sphere.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_sphere.h; sourceTree = "<group>"; };
65B35FCC121C261E003EAD18 /* glc_wiredata.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_wiredata.cpp; sourceTree = "<group>"; };
65B35FCD121C261E003EAD18 /* glc_wiredata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_wiredata.h; sourceTree = "<group>"; };
65B35FCE121C261E003EAD18 /* glc_boundingbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_boundingbox.cpp; sourceTree = "<group>"; };
65B35FCF121C261E003EAD18 /* glc_boundingbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_boundingbox.h; sourceTree = "<group>"; };
65B35FD0121C261E003EAD18 /* glc_cachemanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_cachemanager.cpp; sourceTree = "<group>"; };
65B35FD1121C261E003EAD18 /* glc_cachemanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_cachemanager.h; sourceTree = "<group>"; };
65B35FD2121C261E003EAD18 /* glc_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_config.h; sourceTree = "<group>"; };
65B35FD3121C261E003EAD18 /* glc_exception.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_exception.cpp; sourceTree = "<group>"; };
65B35FD4121C261E003EAD18 /* glc_exception.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_exception.h; sourceTree = "<group>"; };
65B35FD5121C261E003EAD18 /* glc_ext.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_ext.cpp; sourceTree = "<group>"; };
65B35FD6121C261E003EAD18 /* glc_ext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_ext.h; sourceTree = "<group>"; };
65B35FD7121C261E003EAD18 /* glc_factory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_factory.cpp; sourceTree = "<group>"; };
65B35FD8121C261E003EAD18 /* glc_factory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_factory.h; sourceTree = "<group>"; };
65B35FD9121C261E003EAD18 /* glc_fileformatexception.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_fileformatexception.cpp; sourceTree = "<group>"; };
65B35FDA121C261E003EAD18 /* glc_fileformatexception.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_fileformatexception.h; sourceTree = "<group>"; };
65B35FDB121C261E003EAD18 /* glc_global.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_global.cpp; sourceTree = "<group>"; };
65B35FDC121C261E003EAD18 /* glc_global.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_global.h; sourceTree = "<group>"; };
65B35FDD121C261E003EAD18 /* glc_lib.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = glc_lib.pri; sourceTree = "<group>"; };
65B35FDE121C261E003EAD18 /* glc_lib.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = glc_lib.pro; sourceTree = "<group>"; };
65B35FDF121C261E003EAD18 /* glc_object.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_object.cpp; sourceTree = "<group>"; };
65B35FE0121C261E003EAD18 /* glc_object.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_object.h; sourceTree = "<group>"; };
65B35FE1121C261E003EAD18 /* glc_openglexception.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_openglexception.cpp; sourceTree = "<group>"; };
65B35FE2121C261E003EAD18 /* glc_openglexception.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_openglexception.h; sourceTree = "<group>"; };
65B35FE3121C261E003EAD18 /* glc_renderstatistics.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_renderstatistics.cpp; sourceTree = "<group>"; };
65B35FE4121C261E003EAD18 /* glc_renderstatistics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_renderstatistics.h; sourceTree = "<group>"; };
65B35FE5121C261E003EAD18 /* glc_state.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_state.cpp; sourceTree = "<group>"; };
65B35FE6121C261E003EAD18 /* glc_state.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_state.h; sourceTree = "<group>"; };
65B35FE8121C261E003EAD18 /* GLC_3DRep */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_3DRep; sourceTree = "<group>"; };
65B35FE9121C261E003EAD18 /* GLC_3DViewCollection */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_3DViewCollection; sourceTree = "<group>"; };
65B35FEA121C261E003EAD18 /* GLC_3DViewInstance */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_3DViewInstance; sourceTree = "<group>"; };
65B35FEB121C261E003EAD18 /* GLC_3DWidget */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_3DWidget; sourceTree = "<group>"; };
65B35FEC121C261E003EAD18 /* GLC_3DWidgetManager */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_3DWidgetManager; sourceTree = "<group>"; };
65B35FED121C261E003EAD18 /* GLC_3DWidgetManagerHandle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_3DWidgetManagerHandle; sourceTree = "<group>"; };
65B35FEE121C261E003EAD18 /* GLC_AbstractManipulator */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_AbstractManipulator; sourceTree = "<group>"; };
65B35FEF121C261E003EAD18 /* GLC_Arrow */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Arrow; sourceTree = "<group>"; };
65B35FF0121C261E003EAD18 /* GLC_Attribute */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Attribute; sourceTree = "<group>"; };
65B35FF1121C261E003EAD18 /* GLC_Axis */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Axis; sourceTree = "<group>"; };
65B35FF2121C261E003EAD18 /* GLC_BoundingBox */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_BoundingBox; sourceTree = "<group>"; };
65B35FF3121C261E003EAD18 /* GLC_Box */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Box; sourceTree = "<group>"; };
65B35FF4121C261E003EAD18 /* GLC_BSRep */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_BSRep; sourceTree = "<group>"; };
65B35FF5121C261E003EAD18 /* GLC_CacheManager */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_CacheManager; sourceTree = "<group>"; };
65B35FF6121C261E003EAD18 /* GLC_Camera */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Camera; sourceTree = "<group>"; };
65B35FF7121C261E003EAD18 /* GLC_Circle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Circle; sourceTree = "<group>"; };
65B35FF8121C261E003EAD18 /* GLC_Cone */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Cone; sourceTree = "<group>"; };
65B35FF9121C261E003EAD18 /* GLC_CuttingPlane */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_CuttingPlane; sourceTree = "<group>"; };
65B35FFA121C261E003EAD18 /* GLC_Cylinder */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Cylinder; sourceTree = "<group>"; };
65B35FFB121C261E003EAD18 /* GLC_Disc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Disc; sourceTree = "<group>"; };
65B35FFC121C261E003EAD18 /* GLC_Exception */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Exception; sourceTree = "<group>"; };
65B35FFD121C261E003EAD18 /* GLC_Ext */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Ext; sourceTree = "<group>"; };
65B35FFE121C261E003EAD18 /* GLC_Factory */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Factory; sourceTree = "<group>"; };
65B35FFF121C261E003EAD18 /* GLC_FileFormatException */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_FileFormatException; sourceTree = "<group>"; };
65B36000121C261E003EAD18 /* GLC_FlyMover */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_FlyMover; sourceTree = "<group>"; };
65B36001121C261E003EAD18 /* GLC_Frustum */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Frustum; sourceTree = "<group>"; };
65B36002121C261E003EAD18 /* GLC_Geometry */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Geometry; sourceTree = "<group>"; };
65B36003121C261E003EAD18 /* GLC_GeomTools */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_GeomTools; sourceTree = "<group>"; };
65B36004121C261E003EAD18 /* GLC_Global */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Global; sourceTree = "<group>"; };
65B36005121C261E003EAD18 /* GLC_ImagePlane */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_ImagePlane; sourceTree = "<group>"; };
65B36006121C261E003EAD18 /* GLC_Interpolator */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Interpolator; sourceTree = "<group>"; };
65B36007121C261E003EAD18 /* GLC_Light */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Light; sourceTree = "<group>"; };
65B36008121C261E003EAD18 /* GLC_Line */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Line; sourceTree = "<group>"; };
65B36009121C261E003EAD18 /* GLC_Line3d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Line3d; sourceTree = "<group>"; };
65B3600A121C261E003EAD18 /* GLC_Material */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Material; sourceTree = "<group>"; };
65B3600B121C261E003EAD18 /* GLC_Matrix4x4 */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Matrix4x4; sourceTree = "<group>"; };
65B3600C121C261E003EAD18 /* GLC_Mesh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Mesh; sourceTree = "<group>"; };
65B3600D121C261E003EAD18 /* GLC_Mover */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Mover; sourceTree = "<group>"; };
65B3600E121C261E003EAD18 /* GLC_MoverController */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_MoverController; sourceTree = "<group>"; };
65B3600F121C261E003EAD18 /* GLC_Object */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Object; sourceTree = "<group>"; };
65B36010121C261E003EAD18 /* GLC_Octree */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Octree; sourceTree = "<group>"; };
65B36011121C261E003EAD18 /* GLC_OctreeNode */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_OctreeNode; sourceTree = "<group>"; };
65B36012121C261E003EAD18 /* GLC_OpenGlException */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_OpenGlException; sourceTree = "<group>"; };
65B36013121C261E003EAD18 /* GLC_PanMover */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_PanMover; sourceTree = "<group>"; };
65B36014121C261E003EAD18 /* GLC_Plane */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Plane; sourceTree = "<group>"; };
65B36015121C261E003EAD18 /* GLC_Point */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Point; sourceTree = "<group>"; };
65B36016121C261E003EAD18 /* GLC_Point2d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Point2d; sourceTree = "<group>"; };
65B36017121C261E003EAD18 /* GLC_Point2df */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Point2df; sourceTree = "<group>"; };
65B36018121C261E003EAD18 /* GLC_Point3d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Point3d; sourceTree = "<group>"; };
65B36019121C261E003EAD18 /* GLC_Point3df */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Point3df; sourceTree = "<group>"; };
65B3601A121C261E003EAD18 /* GLC_Point4d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Point4d; sourceTree = "<group>"; };
65B3601B121C261E003EAD18 /* GLC_PointSprite */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_PointSprite; sourceTree = "<group>"; };
65B3601C121C261E003EAD18 /* GLC_Polylines */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Polylines; sourceTree = "<group>"; };
65B3601D121C261E003EAD18 /* GLC_PullManipulator */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_PullManipulator; sourceTree = "<group>"; };
65B3601E121C261E003EAD18 /* GLC_Rectangle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Rectangle; sourceTree = "<group>"; };
65B3601F121C261E003EAD18 /* GLC_RenderProperties */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_RenderProperties; sourceTree = "<group>"; };
65B36020121C261E003EAD18 /* GLC_RenderStatistics */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_RenderStatistics; sourceTree = "<group>"; };
65B36021121C261E003EAD18 /* GLC_Rep */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Rep; sourceTree = "<group>"; };
65B36022121C261E003EAD18 /* GLC_RepCrossMover */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_RepCrossMover; sourceTree = "<group>"; };
65B36023121C261E003EAD18 /* GLC_RepFlyMover */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_RepFlyMover; sourceTree = "<group>"; };
65B36024121C261E003EAD18 /* GLC_RepMover */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_RepMover; sourceTree = "<group>"; };
65B36025121C261E003EAD18 /* GLC_RepTrackBallMover */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_RepTrackBallMover; sourceTree = "<group>"; };
65B36026121C261E003EAD18 /* GLC_RotationManipulator */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_RotationManipulator; sourceTree = "<group>"; };
65B36027121C261E003EAD18 /* GLC_SelectionMaterial */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_SelectionMaterial; sourceTree = "<group>"; };
65B36028121C261E003EAD18 /* GLC_Shader */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Shader; sourceTree = "<group>"; };
65B36029121C261E003EAD18 /* GLC_SpacePartitioning */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_SpacePartitioning; sourceTree = "<group>"; };
65B3602A121C261E003EAD18 /* GLC_Sphere */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Sphere; sourceTree = "<group>"; };
65B3602B121C261E003EAD18 /* GLC_State */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_State; sourceTree = "<group>"; };
65B3602C121C261E003EAD18 /* GLC_StructInstance */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_StructInstance; sourceTree = "<group>"; };
65B3602D121C261E003EAD18 /* GLC_StructOccurence */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_StructOccurence; sourceTree = "<group>"; };
65B3602E121C261E003EAD18 /* GLC_StructReference */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_StructReference; sourceTree = "<group>"; };
65B3602F121C261E003EAD18 /* GLC_Texture */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Texture; sourceTree = "<group>"; };
65B36030121C261E003EAD18 /* GLC_TrackBallMover */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_TrackBallMover; sourceTree = "<group>"; };
65B36031121C261E003EAD18 /* GLC_TurnTableMover */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_TurnTableMover; sourceTree = "<group>"; };
65B36032121C261E003EAD18 /* GLC_Vector2d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Vector2d; sourceTree = "<group>"; };
65B36033121C261E003EAD18 /* GLC_Vector2df */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Vector2df; sourceTree = "<group>"; };
65B36034121C261E003EAD18 /* GLC_Vector3d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Vector3d; sourceTree = "<group>"; };
65B36035121C261E003EAD18 /* GLC_Vector3df */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Vector3df; sourceTree = "<group>"; };
65B36036121C261E003EAD18 /* GLC_Vector4d */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Vector4d; sourceTree = "<group>"; };
65B36037121C261E003EAD18 /* GLC_Viewport */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_Viewport; sourceTree = "<group>"; };
65B36038121C261E003EAD18 /* GLC_World */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_World; sourceTree = "<group>"; };
65B36039121C261E003EAD18 /* GLC_WorldTo3dxml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_WorldTo3dxml; sourceTree = "<group>"; };
65B3603A121C261E003EAD18 /* GLC_ZoomMover */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GLC_ZoomMover; sourceTree = "<group>"; };
65B3603C121C261E003EAD18 /* glc_3dstoworld.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_3dstoworld.cpp; sourceTree = "<group>"; };
65B3603D121C261E003EAD18 /* glc_3dstoworld.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_3dstoworld.h; sourceTree = "<group>"; };
65B3603E121C261E003EAD18 /* glc_3dxmltoworld.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_3dxmltoworld.cpp; sourceTree = "<group>"; };
65B3603F121C261E003EAD18 /* glc_3dxmltoworld.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_3dxmltoworld.h; sourceTree = "<group>"; };
65B36040121C261E003EAD18 /* glc_bsreptoworld.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_bsreptoworld.cpp; sourceTree = "<group>"; };
65B36041121C261E003EAD18 /* glc_bsreptoworld.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_bsreptoworld.h; sourceTree = "<group>"; };
65B36042121C261E003EAD18 /* glc_colladatoworld.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_colladatoworld.cpp; sourceTree = "<group>"; };
65B36043121C261E003EAD18 /* glc_colladatoworld.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_colladatoworld.h; sourceTree = "<group>"; };
65B36044121C261E003EAD18 /* glc_objmtlloader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_objmtlloader.cpp; sourceTree = "<group>"; };
65B36045121C261E003EAD18 /* glc_objmtlloader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_objmtlloader.h; sourceTree = "<group>"; };
65B36046121C261E003EAD18 /* glc_objtoworld.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_objtoworld.cpp; sourceTree = "<group>"; };
65B36047121C261E003EAD18 /* glc_objtoworld.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_objtoworld.h; sourceTree = "<group>"; };
65B36048121C261E003EAD18 /* glc_offtoworld.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_offtoworld.cpp; sourceTree = "<group>"; };
65B36049121C261E003EAD18 /* glc_offtoworld.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_offtoworld.h; sourceTree = "<group>"; };
65B3604A121C261E003EAD18 /* glc_stltoworld.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_stltoworld.cpp; sourceTree = "<group>"; };
65B3604B121C261E003EAD18 /* glc_stltoworld.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_stltoworld.h; sourceTree = "<group>"; };
65B3604C121C261E003EAD18 /* glc_worldto3dxml.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_worldto3dxml.cpp; sourceTree = "<group>"; };
65B3604D121C261E003EAD18 /* glc_worldto3dxml.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_worldto3dxml.h; sourceTree = "<group>"; };
65B3604F121C261E003EAD18 /* glc_geomtools.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_geomtools.cpp; sourceTree = "<group>"; };
65B36050121C261E003EAD18 /* glc_geomtools.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_geomtools.h; sourceTree = "<group>"; };
65B36051121C261E003EAD18 /* glc_interpolator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_interpolator.cpp; sourceTree = "<group>"; };
65B36052121C261E003EAD18 /* glc_interpolator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_interpolator.h; sourceTree = "<group>"; };
65B36053121C261E003EAD18 /* glc_line3d.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_line3d.cpp; sourceTree = "<group>"; };
65B36054121C261E003EAD18 /* glc_line3d.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_line3d.h; sourceTree = "<group>"; };
65B36055121C261E003EAD18 /* glc_matrix4x4.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_matrix4x4.cpp; sourceTree = "<group>"; };
65B36056121C261E003EAD18 /* glc_matrix4x4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_matrix4x4.h; sourceTree = "<group>"; };
65B36057121C261E003EAD18 /* glc_plane.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_plane.cpp; sourceTree = "<group>"; };
65B36058121C261E003EAD18 /* glc_plane.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_plane.h; sourceTree = "<group>"; };
65B36059121C261E003EAD18 /* glc_utils_maths.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_utils_maths.h; sourceTree = "<group>"; };
65B3605A121C261E003EAD18 /* glc_vector2d.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_vector2d.h; sourceTree = "<group>"; };
65B3605B121C261E003EAD18 /* glc_vector2df.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_vector2df.h; sourceTree = "<group>"; };
65B3605C121C261E003EAD18 /* glc_vector3d.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_vector3d.h; sourceTree = "<group>"; };
65B3605D121C261E003EAD18 /* glc_vector3df.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_vector3df.h; sourceTree = "<group>"; };
65B3605E121C261E003EAD18 /* glc_vector4d.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_vector4d.cpp; sourceTree = "<group>"; };
65B3605F121C261E003EAD18 /* glc_vector4d.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_vector4d.h; sourceTree = "<group>"; };
65B36061121C261E003EAD18 /* glc_3dviewcollection.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_3dviewcollection.cpp; sourceTree = "<group>"; };
65B36062121C261E003EAD18 /* glc_3dviewcollection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_3dviewcollection.h; sourceTree = "<group>"; };
65B36063121C261E003EAD18 /* glc_3dviewinstance.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_3dviewinstance.cpp; sourceTree = "<group>"; };
65B36064121C261E003EAD18 /* glc_3dviewinstance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_3dviewinstance.h; sourceTree = "<group>"; };
65B36065121C261E003EAD18 /* glc_attributes.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_attributes.cpp; sourceTree = "<group>"; };
65B36066121C261E003EAD18 /* glc_attributes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_attributes.h; sourceTree = "<group>"; };
65B36067121C261E003EAD18 /* glc_octree.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_octree.cpp; sourceTree = "<group>"; };
65B36068121C261E003EAD18 /* glc_octree.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_octree.h; sourceTree = "<group>"; };
65B36069121C261E003EAD18 /* glc_octreenode.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_octreenode.cpp; sourceTree = "<group>"; };
65B3606A121C261E003EAD18 /* glc_octreenode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_octreenode.h; sourceTree = "<group>"; };
65B3606B121C261E003EAD18 /* glc_spacepartitioning.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_spacepartitioning.cpp; sourceTree = "<group>"; };
65B3606C121C261E003EAD18 /* glc_spacepartitioning.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_spacepartitioning.h; sourceTree = "<group>"; };
65B3606D121C261E003EAD18 /* glc_structinstance.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_structinstance.cpp; sourceTree = "<group>"; };
65B3606E121C261E003EAD18 /* glc_structinstance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_structinstance.h; sourceTree = "<group>"; };
65B3606F121C261E003EAD18 /* glc_structoccurence.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_structoccurence.cpp; sourceTree = "<group>"; };
65B36070121C261E003EAD18 /* glc_structoccurence.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_structoccurence.h; sourceTree = "<group>"; };
65B36071121C261E003EAD18 /* glc_structreference.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_structreference.cpp; sourceTree = "<group>"; };
65B36072121C261E003EAD18 /* glc_structreference.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_structreference.h; sourceTree = "<group>"; };
65B36073121C261E003EAD18 /* glc_world.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_world.cpp; sourceTree = "<group>"; };
65B36074121C261E003EAD18 /* glc_world.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_world.h; sourceTree = "<group>"; };
65B36075121C261E003EAD18 /* glc_worldhandle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_worldhandle.cpp; sourceTree = "<group>"; };
65B36076121C261E003EAD18 /* glc_worldhandle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_worldhandle.h; sourceTree = "<group>"; };
65B36078121C261E003EAD18 /* glc_light.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_light.cpp; sourceTree = "<group>"; };
65B36079121C261E003EAD18 /* glc_light.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_light.h; sourceTree = "<group>"; };
65B3607A121C261E003EAD18 /* glc_material.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_material.cpp; sourceTree = "<group>"; };
65B3607B121C261E003EAD18 /* glc_material.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_material.h; sourceTree = "<group>"; };
65B3607C121C261E003EAD18 /* glc_renderproperties.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_renderproperties.cpp; sourceTree = "<group>"; };
65B3607D121C261E003EAD18 /* glc_renderproperties.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_renderproperties.h; sourceTree = "<group>"; };
65B3607E121C261E003EAD18 /* glc_selectionmaterial.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_selectionmaterial.cpp; sourceTree = "<group>"; };
65B3607F121C261E003EAD18 /* glc_selectionmaterial.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_selectionmaterial.h; sourceTree = "<group>"; };
65B36080121C261E003EAD18 /* glc_shader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_shader.cpp; sourceTree = "<group>"; };
65B36081121C261E003EAD18 /* glc_shader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_shader.h; sourceTree = "<group>"; };
65B36082121C261E003EAD18 /* glc_texture.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_texture.cpp; sourceTree = "<group>"; };
65B36083121C261E003EAD18 /* glc_texture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_texture.h; sourceTree = "<group>"; };
65B36085121C261E003EAD18 /* glc_camera.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_camera.cpp; sourceTree = "<group>"; };
65B36086121C261E003EAD18 /* glc_camera.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_camera.h; sourceTree = "<group>"; };
65B36087121C261E003EAD18 /* glc_flymover.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_flymover.cpp; sourceTree = "<group>"; };
65B36088121C261E003EAD18 /* glc_flymover.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_flymover.h; sourceTree = "<group>"; };
65B36089121C261E003EAD18 /* glc_frustum.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_frustum.cpp; sourceTree = "<group>"; };
65B3608A121C261E003EAD18 /* glc_frustum.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_frustum.h; sourceTree = "<group>"; };
65B3608B121C261E003EAD18 /* glc_imageplane.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_imageplane.cpp; sourceTree = "<group>"; };
65B3608C121C261E003EAD18 /* glc_imageplane.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_imageplane.h; sourceTree = "<group>"; };
65B3608D121C261E003EAD18 /* glc_mover.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_mover.cpp; sourceTree = "<group>"; };
65B3608E121C261E003EAD18 /* glc_mover.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_mover.h; sourceTree = "<group>"; };
65B3608F121C261E003EAD18 /* glc_movercontroller.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_movercontroller.cpp; sourceTree = "<group>"; };
65B36090121C261E003EAD18 /* glc_movercontroller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_movercontroller.h; sourceTree = "<group>"; };
65B36091121C261E003EAD18 /* glc_panmover.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_panmover.cpp; sourceTree = "<group>"; };
65B36092121C261E003EAD18 /* glc_panmover.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_panmover.h; sourceTree = "<group>"; };
65B36093121C261E003EAD18 /* glc_repcrossmover.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_repcrossmover.cpp; sourceTree = "<group>"; };
65B36094121C261E003EAD18 /* glc_repcrossmover.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_repcrossmover.h; sourceTree = "<group>"; };
65B36095121C261E003EAD18 /* glc_repflymover.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_repflymover.cpp; sourceTree = "<group>"; };
65B36096121C261E003EAD18 /* glc_repflymover.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_repflymover.h; sourceTree = "<group>"; };
65B36097121C261E003EAD18 /* glc_repmover.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_repmover.cpp; sourceTree = "<group>"; };
65B36098121C261E003EAD18 /* glc_repmover.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_repmover.h; sourceTree = "<group>"; };
65B36099121C261E003EAD18 /* glc_reptrackballmover.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_reptrackballmover.cpp; sourceTree = "<group>"; };
65B3609A121C261E003EAD18 /* glc_reptrackballmover.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_reptrackballmover.h; sourceTree = "<group>"; };
65B3609B121C261E003EAD18 /* glc_settargetmover.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_settargetmover.cpp; sourceTree = "<group>"; };
65B3609C121C261E003EAD18 /* glc_settargetmover.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_settargetmover.h; sourceTree = "<group>"; };
65B3609D121C261E003EAD18 /* glc_trackballmover.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_trackballmover.cpp; sourceTree = "<group>"; };
65B3609E121C261E003EAD18 /* glc_trackballmover.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_trackballmover.h; sourceTree = "<group>"; };
65B3609F121C261E003EAD18 /* glc_turntablemover.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_turntablemover.cpp; sourceTree = "<group>"; };
65B360A0121C261E003EAD18 /* glc_turntablemover.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_turntablemover.h; sourceTree = "<group>"; };
65B360A1121C261E003EAD18 /* glc_viewport.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_viewport.cpp; sourceTree = "<group>"; };
65B360A2121C261E003EAD18 /* glc_viewport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_viewport.h; sourceTree = "<group>"; };
65B360A3121C261E003EAD18 /* glc_zoommover.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = glc_zoommover.cpp; sourceTree = "<group>"; };
65B360A4121C261E003EAD18 /* glc_zoommover.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glc_zoommover.h; sourceTree = "<group>"; };
65B360A6121C261E003EAD18 /* AUTHORS */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AUTHORS; sourceTree = "<group>"; };
65B360A7121C261E003EAD18 /* cpl1.0.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cpl1.0.txt; sourceTree = "<group>"; };
65B360A8121C261E003EAD18 /* lgpl-2.1.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "lgpl-2.1.txt"; sourceTree = "<group>"; };
65B360A9121C261E003EAD18 /* libqxt.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libqxt.pri; sourceTree = "<group>"; };
65B360AA121C261E003EAD18 /* libqxt.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libqxt.pro; sourceTree = "<group>"; };
65B360AB121C261E003EAD18 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
65B360AC121C261E003EAD18 /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README; sourceTree = "<group>"; };
65B360AF121C261E003EAD18 /* berkeley.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = berkeley.pri; sourceTree = "<group>"; };
65B360B0121C261E003EAD18 /* berkeley.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = berkeley.pro; sourceTree = "<group>"; };
65B360B1121C261E003EAD18 /* qxtbdb.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtbdb.cpp; sourceTree = "<group>"; };
65B360B2121C261E003EAD18 /* qxtbdb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtbdb.h; sourceTree = "<group>"; };
65B360B3121C261E003EAD18 /* qxtbdbhash.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtbdbhash.cpp; sourceTree = "<group>"; };
65B360B4121C261E003EAD18 /* qxtbdbhash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtbdbhash.h; sourceTree = "<group>"; };
65B360B5121C261E003EAD18 /* qxtbdbtree.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtbdbtree.cpp; sourceTree = "<group>"; };
65B360B6121C261E003EAD18 /* qxtbdbtree.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtbdbtree.h; sourceTree = "<group>"; };
65B360B7121C261E003EAD18 /* qxtberkeley.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtberkeley.h; sourceTree = "<group>"; };
65B360B9121C261E003EAD18 /* core.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = core.pri; sourceTree = "<group>"; };
65B360BA121C261E003EAD18 /* core.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = core.pro; sourceTree = "<group>"; };
65B360BC121C261E003EAD18 /* logengines.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = logengines.pri; sourceTree = "<group>"; };
65B360BD121C261E003EAD18 /* qxtabstractfileloggerengine.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtabstractfileloggerengine.cpp; sourceTree = "<group>"; };
65B360BE121C261E003EAD18 /* qxtabstractfileloggerengine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtabstractfileloggerengine.h; sourceTree = "<group>"; };
65B360BF121C261E003EAD18 /* qxtabstractiologgerengine.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtabstractiologgerengine.cpp; sourceTree = "<group>"; };
65B360C0121C261E003EAD18 /* qxtabstractiologgerengine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtabstractiologgerengine.h; sourceTree = "<group>"; };
65B360C1121C261E003EAD18 /* qxtbasicfileloggerengine.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtbasicfileloggerengine.cpp; sourceTree = "<group>"; };
65B360C2121C261E003EAD18 /* qxtbasicfileloggerengine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtbasicfileloggerengine.h; sourceTree = "<group>"; };
65B360C3121C261E003EAD18 /* qxtbasicstdloggerengine.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtbasicstdloggerengine.cpp; sourceTree = "<group>"; };
65B360C4121C261E003EAD18 /* qxtbasicstdloggerengine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtbasicstdloggerengine.h; sourceTree = "<group>"; };
65B360C5121C261E003EAD18 /* qxtxmlfileloggerengine.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtxmlfileloggerengine.cpp; sourceTree = "<group>"; };
65B360C6121C261E003EAD18 /* qxtxmlfileloggerengine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtxmlfileloggerengine.h; sourceTree = "<group>"; };
65B360C7121C261E003EAD18 /* qxtabstractconnectionmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtabstractconnectionmanager.cpp; sourceTree = "<group>"; };
65B360C8121C261E003EAD18 /* qxtabstractconnectionmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtabstractconnectionmanager.h; sourceTree = "<group>"; };
65B360C9121C261E003EAD18 /* qxtabstractsignalserializer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtabstractsignalserializer.h; sourceTree = "<group>"; };
65B360CA121C261E003EAD18 /* qxtalgorithms.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtalgorithms.h; sourceTree = "<group>"; };
65B360CB121C261E003EAD18 /* qxtboundcfunction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtboundcfunction.h; sourceTree = "<group>"; };
65B360CC121C261E003EAD18 /* qxtboundfunction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtboundfunction.h; sourceTree = "<group>"; };
65B360CD121C261E003EAD18 /* qxtboundfunctionbase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtboundfunctionbase.h; sourceTree = "<group>"; };
65B360CE121C261E003EAD18 /* qxtcommandoptions.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtcommandoptions.cpp; sourceTree = "<group>"; };
65B360CF121C261E003EAD18 /* qxtcommandoptions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtcommandoptions.h; sourceTree = "<group>"; };
65B360D0121C261E003EAD18 /* qxtcore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtcore.h; sourceTree = "<group>"; };
65B360D1121C261E003EAD18 /* qxtcsvmodel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtcsvmodel.cpp; sourceTree = "<group>"; };
65B360D2121C261E003EAD18 /* qxtcsvmodel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtcsvmodel.h; sourceTree = "<group>"; };
65B360D3121C261E003EAD18 /* qxtdaemon.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtdaemon.cpp; sourceTree = "<group>"; };
65B360D4121C261E003EAD18 /* qxtdaemon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtdaemon.h; sourceTree = "<group>"; };
65B360D5121C261E003EAD18 /* qxtdatastreamsignalserializer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtdatastreamsignalserializer.cpp; sourceTree = "<group>"; };
65B360D6121C261E003EAD18 /* qxtdatastreamsignalserializer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtdatastreamsignalserializer.h; sourceTree = "<group>"; };
65B360D7121C261E003EAD18 /* qxtdeplex.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtdeplex.cpp; sourceTree = "<group>"; };
65B360D8121C261E003EAD18 /* qxtdeplex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtdeplex.h; sourceTree = "<group>"; };
65B360D9121C261E003EAD18 /* qxtdeplex_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtdeplex_p.h; sourceTree = "<group>"; };
65B360DA121C261E003EAD18 /* qxterror.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxterror.cpp; sourceTree = "<group>"; };
65B360DB121C261E003EAD18 /* qxterror.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxterror.h; sourceTree = "<group>"; };
65B360DC121C261E003EAD18 /* qxtfifo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtfifo.cpp; sourceTree = "<group>"; };
65B360DD121C261E003EAD18 /* qxtfifo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtfifo.h; sourceTree = "<group>"; };
65B360DE121C261E003EAD18 /* qxtfilelock.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtfilelock.cpp; sourceTree = "<group>"; };
65B360DF121C261E003EAD18 /* qxtfilelock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtfilelock.h; sourceTree = "<group>"; };
65B360E0121C261E003EAD18 /* qxtfilelock_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtfilelock_p.h; sourceTree = "<group>"; };
65B360E1121C261E003EAD18 /* qxtfilelock_unix.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtfilelock_unix.cpp; sourceTree = "<group>"; };
65B360E2121C261E003EAD18 /* qxtfilelock_win.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtfilelock_win.cpp; sourceTree = "<group>"; };
65B360E3121C261E003EAD18 /* qxtglobal.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtglobal.cpp; sourceTree = "<group>"; };
65B360E4121C261E003EAD18 /* qxtglobal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtglobal.h; sourceTree = "<group>"; };
65B360E5121C261E003EAD18 /* qxthmac.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxthmac.cpp; sourceTree = "<group>"; };
65B360E6121C261E003EAD18 /* qxthmac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxthmac.h; sourceTree = "<group>"; };
65B360E7121C261E003EAD18 /* qxtjob.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtjob.cpp; sourceTree = "<group>"; };
65B360E8121C261E003EAD18 /* qxtjob.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtjob.h; sourceTree = "<group>"; };
65B360E9121C261E003EAD18 /* qxtjob_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtjob_p.h; sourceTree = "<group>"; };
65B360EA121C261E003EAD18 /* qxtjson.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtjson.cpp; sourceTree = "<group>"; };
65B360EB121C261E003EAD18 /* qxtjson.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtjson.h; sourceTree = "<group>"; };
65B360EC121C261E003EAD18 /* qxtlinesocket.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtlinesocket.cpp; sourceTree = "<group>"; };
65B360ED121C261E003EAD18 /* qxtlinesocket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtlinesocket.h; sourceTree = "<group>"; };
65B360EE121C261E003EAD18 /* qxtlinesocket_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtlinesocket_p.h; sourceTree = "<group>"; };
65B360EF121C261E003EAD18 /* qxtlinkedtree.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtlinkedtree.cpp; sourceTree = "<group>"; };
65B360F0121C261E003EAD18 /* qxtlinkedtree.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtlinkedtree.h; sourceTree = "<group>"; };
65B360F1121C261E003EAD18 /* qxtlocale.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtlocale.cpp; sourceTree = "<group>"; };
65B360F2121C261E003EAD18 /* qxtlocale.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtlocale.h; sourceTree = "<group>"; };
65B360F3121C261E003EAD18 /* qxtlocale_data_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtlocale_data_p.h; sourceTree = "<group>"; };
65B360F4121C261E003EAD18 /* qxtlogger.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtlogger.cpp; sourceTree = "<group>"; };
65B360F5121C261E003EAD18 /* qxtlogger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtlogger.h; sourceTree = "<group>"; };
65B360F6121C261E003EAD18 /* qxtlogger_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtlogger_p.h; sourceTree = "<group>"; };
65B360F7121C261E003EAD18 /* qxtloggerengine.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtloggerengine.cpp; sourceTree = "<group>"; };
65B360F8121C261E003EAD18 /* qxtloggerengine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtloggerengine.h; sourceTree = "<group>"; };
65B360F9121C261E003EAD18 /* qxtlogstream.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtlogstream.cpp; sourceTree = "<group>"; };
65B360FA121C261E003EAD18 /* qxtlogstream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtlogstream.h; sourceTree = "<group>"; };
65B360FB121C261E003EAD18 /* qxtlogstream_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtlogstream_p.h; sourceTree = "<group>"; };
65B360FC121C261E003EAD18 /* qxtmetaobject.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtmetaobject.cpp; sourceTree = "<group>"; };
65B360FD121C261E003EAD18 /* qxtmetaobject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtmetaobject.h; sourceTree = "<group>"; };
65B360FE121C261E003EAD18 /* qxtmetatype.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtmetatype.h; sourceTree = "<group>"; };
65B360FF121C261E003EAD18 /* qxtmodelserializer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtmodelserializer.cpp; sourceTree = "<group>"; };
65B36100121C261E003EAD18 /* qxtmodelserializer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtmodelserializer.h; sourceTree = "<group>"; };
65B36101121C261E003EAD18 /* qxtmultisignalwaiter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtmultisignalwaiter.cpp; sourceTree = "<group>"; };
65B36102121C261E003EAD18 /* qxtmultisignalwaiter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtmultisignalwaiter.h; sourceTree = "<group>"; };
65B36103121C261E003EAD18 /* qxtnamespace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtnamespace.h; sourceTree = "<group>"; };
65B36104121C261F003EAD18 /* qxtnull.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtnull.cpp; sourceTree = "<group>"; };
65B36105121C261F003EAD18 /* qxtnull.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtnull.h; sourceTree = "<group>"; };
65B36106121C261F003EAD18 /* qxtnullable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtnullable.h; sourceTree = "<group>"; };
65B36107121C261F003EAD18 /* qxtpairlist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtpairlist.h; sourceTree = "<group>"; };
65B36108121C261F003EAD18 /* qxtpimpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtpimpl.h; sourceTree = "<group>"; };
65B36109121C261F003EAD18 /* qxtpipe.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtpipe.cpp; sourceTree = "<group>"; };
65B3610A121C261F003EAD18 /* qxtpipe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtpipe.h; sourceTree = "<group>"; };
65B3610B121C261F003EAD18 /* qxtpipe_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtpipe_p.h; sourceTree = "<group>"; };
65B3610C121C261F003EAD18 /* qxtpointerlist.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtpointerlist.cpp; sourceTree = "<group>"; };
65B3610D121C261F003EAD18 /* qxtpointerlist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtpointerlist.h; sourceTree = "<group>"; };
65B3610E121C261F003EAD18 /* qxtrpcservice.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtrpcservice.cpp; sourceTree = "<group>"; };
65B3610F121C261F003EAD18 /* qxtrpcservice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtrpcservice.h; sourceTree = "<group>"; };
65B36110121C261F003EAD18 /* qxtrpcservice_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtrpcservice_p.h; sourceTree = "<group>"; };
65B36111121C261F003EAD18 /* qxtserialdevice.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtserialdevice.cpp; sourceTree = "<group>"; };
65B36112121C261F003EAD18 /* qxtserialdevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtserialdevice.h; sourceTree = "<group>"; };
65B36113121C261F003EAD18 /* qxtserialdevice_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtserialdevice_p.h; sourceTree = "<group>"; };
65B36114121C261F003EAD18 /* qxtserialdevice_unix.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtserialdevice_unix.cpp; sourceTree = "<group>"; };
65B36115121C261F003EAD18 /* qxtsharedprivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtsharedprivate.h; sourceTree = "<group>"; };
65B36116121C261F003EAD18 /* qxtsignalgroup.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtsignalgroup.cpp; sourceTree = "<group>"; };
65B36117121C261F003EAD18 /* qxtsignalgroup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtsignalgroup.h; sourceTree = "<group>"; };
65B36118121C261F003EAD18 /* qxtsignalwaiter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtsignalwaiter.cpp; sourceTree = "<group>"; };
65B36119121C261F003EAD18 /* qxtsignalwaiter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtsignalwaiter.h; sourceTree = "<group>"; };
65B3611A121C261F003EAD18 /* qxtslotjob.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtslotjob.cpp; sourceTree = "<group>"; };
65B3611B121C261F003EAD18 /* qxtslotjob.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtslotjob.h; sourceTree = "<group>"; };
65B3611C121C261F003EAD18 /* qxtslotjob_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtslotjob_p.h; sourceTree = "<group>"; };
65B3611D121C261F003EAD18 /* qxtslotmapper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtslotmapper.cpp; sourceTree = "<group>"; };
65B3611E121C261F003EAD18 /* qxtslotmapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtslotmapper.h; sourceTree = "<group>"; };
65B3611F121C261F003EAD18 /* qxtstdio.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtstdio.cpp; sourceTree = "<group>"; };
65B36120121C261F003EAD18 /* qxtstdio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtstdio.h; sourceTree = "<group>"; };
65B36121121C261F003EAD18 /* qxtstdio_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtstdio_p.h; sourceTree = "<group>"; };
65B36122121C261F003EAD18 /* qxtstdstreambufdevice.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtstdstreambufdevice.cpp; sourceTree = "<group>"; };
65B36123121C261F003EAD18 /* qxtstdstreambufdevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtstdstreambufdevice.h; sourceTree = "<group>"; };
65B36124121C261F003EAD18 /* qxttimer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxttimer.cpp; sourceTree = "<group>"; };
65B36125121C261F003EAD18 /* qxttimer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxttimer.h; sourceTree = "<group>"; };
65B36126121C261F003EAD18 /* qxttypelist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxttypelist.h; sourceTree = "<group>"; };
65B36128121C261F003EAD18 /* designer.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = designer.pri; sourceTree = "<group>"; };
65B36129121C261F003EAD18 /* designer.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = designer.pro; sourceTree = "<group>"; };
65B3612A121C261F003EAD18 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
65B3612B121C261F003EAD18 /* qxtbasespinboxplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtbasespinboxplugin.cpp; sourceTree = "<group>"; };
65B3612C121C261F003EAD18 /* qxtbasespinboxplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtbasespinboxplugin.h; sourceTree = "<group>"; };
65B3612D121C261F003EAD18 /* qxtcheckcomboboxplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtcheckcomboboxplugin.cpp; sourceTree = "<group>"; };
65B3612E121C261F003EAD18 /* qxtcheckcomboboxplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtcheckcomboboxplugin.h; sourceTree = "<group>"; };
65B3612F121C261F003EAD18 /* qxtcountrycomboboxplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtcountrycomboboxplugin.cpp; sourceTree = "<group>"; };
65B36130121C261F003EAD18 /* qxtcountrycomboboxplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtcountrycomboboxplugin.h; sourceTree = "<group>"; };
65B36131121C261F003EAD18 /* qxtdesignerplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtdesignerplugin.cpp; sourceTree = "<group>"; };
65B36132121C261F003EAD18 /* qxtdesignerplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtdesignerplugin.h; sourceTree = "<group>"; };
65B36133121C261F003EAD18 /* qxtdesignerplugins.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtdesignerplugins.cpp; sourceTree = "<group>"; };
65B36134121C261F003EAD18 /* qxtdesignerplugins.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtdesignerplugins.h; sourceTree = "<group>"; };
65B36135121C261F003EAD18 /* qxtflowviewplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtflowviewplugin.cpp; sourceTree = "<group>"; };
65B36136121C261F003EAD18 /* qxtflowviewplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtflowviewplugin.h; sourceTree = "<group>"; };
65B36137121C261F003EAD18 /* qxtgroupboxplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtgroupboxplugin.cpp; sourceTree = "<group>"; };
65B36138121C261F003EAD18 /* qxtgroupboxplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtgroupboxplugin.h; sourceTree = "<group>"; };
65B36139121C261F003EAD18 /* qxtlabelplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtlabelplugin.cpp; sourceTree = "<group>"; };
65B3613A121C261F003EAD18 /* qxtlabelplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtlabelplugin.h; sourceTree = "<group>"; };
65B3613B121C261F003EAD18 /* qxtlanguagecomboboxplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtlanguagecomboboxplugin.cpp; sourceTree = "<group>"; };
65B3613C121C261F003EAD18 /* qxtlanguagecomboboxplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtlanguagecomboboxplugin.h; sourceTree = "<group>"; };
65B3613D121C261F003EAD18 /* qxtletterboxwidgetplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtletterboxwidgetplugin.cpp; sourceTree = "<group>"; };
65B3613E121C261F003EAD18 /* qxtletterboxwidgetplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtletterboxwidgetplugin.h; sourceTree = "<group>"; };
65B3613F121C261F003EAD18 /* qxtlineeditplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtlineeditplugin.cpp; sourceTree = "<group>"; };
65B36140121C261F003EAD18 /* qxtlineeditplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtlineeditplugin.h; sourceTree = "<group>"; };
65B36141121C261F003EAD18 /* qxtlistwidgetplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtlistwidgetplugin.cpp; sourceTree = "<group>"; };
65B36142121C261F003EAD18 /* qxtlistwidgetplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtlistwidgetplugin.h; sourceTree = "<group>"; };
65B36143121C261F003EAD18 /* qxtprogresslabelplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtprogresslabelplugin.cpp; sourceTree = "<group>"; };
65B36144121C261F003EAD18 /* qxtprogresslabelplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtprogresslabelplugin.h; sourceTree = "<group>"; };
65B36145121C261F003EAD18 /* qxtpushbuttonplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtpushbuttonplugin.cpp; sourceTree = "<group>"; };
65B36146121C261F003EAD18 /* qxtpushbuttonplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtpushbuttonplugin.h; sourceTree = "<group>"; };
65B36147121C261F003EAD18 /* qxtspansliderplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtspansliderplugin.cpp; sourceTree = "<group>"; };
65B36148121C261F003EAD18 /* qxtspansliderplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtspansliderplugin.h; sourceTree = "<group>"; };
65B36149121C261F003EAD18 /* qxtstarsplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtstarsplugin.cpp; sourceTree = "<group>"; };
65B3614A121C261F003EAD18 /* qxtstarsplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtstarsplugin.h; sourceTree = "<group>"; };
65B3614B121C261F003EAD18 /* qxtstringspinboxplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtstringspinboxplugin.cpp; sourceTree = "<group>"; };
65B3614C121C261F003EAD18 /* qxtstringspinboxplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtstringspinboxplugin.h; sourceTree = "<group>"; };
65B3614D121C261F003EAD18 /* qxttablewidgetplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxttablewidgetplugin.cpp; sourceTree = "<group>"; };
65B3614E121C261F003EAD18 /* qxttablewidgetplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxttablewidgetplugin.h; sourceTree = "<group>"; };
65B3614F121C261F003EAD18 /* qxttreewidgetplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxttreewidgetplugin.cpp; sourceTree = "<group>"; };
65B36150121C261F003EAD18 /* qxttreewidgetplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxttreewidgetplugin.h; sourceTree = "<group>"; };
65B36151121C261F003EAD18 /* resources.qrc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = resources.qrc; sourceTree = "<group>"; };
65B36153121C261F003EAD18 /* gui.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = gui.pri; sourceTree = "<group>"; };
65B36154121C261F003EAD18 /* gui.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = gui.pro; sourceTree = "<group>"; };
65B36155121C261F003EAD18 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
65B36156121C261F003EAD18 /* qxtapplication.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtapplication.cpp; sourceTree = "<group>"; };
65B36157121C261F003EAD18 /* qxtapplication.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtapplication.h; sourceTree = "<group>"; };
65B36158121C261F003EAD18 /* qxtapplication_mac.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtapplication_mac.cpp; sourceTree = "<group>"; };
65B36159121C261F003EAD18 /* qxtapplication_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtapplication_p.h; sourceTree = "<group>"; };
65B3615A121C261F003EAD18 /* qxtapplication_win.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtapplication_win.cpp; sourceTree = "<group>"; };
65B3615B121C261F003EAD18 /* qxtapplication_x11.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtapplication_x11.cpp; sourceTree = "<group>"; };
65B3615C121C261F003EAD18 /* qxtbasespinbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtbasespinbox.cpp; sourceTree = "<group>"; };
65B3615D121C261F003EAD18 /* qxtbasespinbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtbasespinbox.h; sourceTree = "<group>"; };
65B3615E121C261F003EAD18 /* qxtcheckcombobox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtcheckcombobox.cpp; sourceTree = "<group>"; };
65B3615F121C261F003EAD18 /* qxtcheckcombobox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtcheckcombobox.h; sourceTree = "<group>"; };
65B36160121C261F003EAD18 /* qxtcheckcombobox_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtcheckcombobox_p.h; sourceTree = "<group>"; };
65B36161121C261F003EAD18 /* qxtconfigdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtconfigdialog.cpp; sourceTree = "<group>"; };
65B36162121C261F003EAD18 /* qxtconfigdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtconfigdialog.h; sourceTree = "<group>"; };
65B36163121C261F003EAD18 /* qxtconfigdialog_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtconfigdialog_p.h; sourceTree = "<group>"; };
65B36164121C261F003EAD18 /* qxtconfigwidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtconfigwidget.cpp; sourceTree = "<group>"; };
65B36165121C261F003EAD18 /* qxtconfigwidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtconfigwidget.h; sourceTree = "<group>"; };
65B36166121C261F003EAD18 /* qxtconfigwidget_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtconfigwidget_p.h; sourceTree = "<group>"; };
65B36167121C261F003EAD18 /* qxtconfirmationmessage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtconfirmationmessage.cpp; sourceTree = "<group>"; };
65B36168121C261F003EAD18 /* qxtconfirmationmessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtconfirmationmessage.h; sourceTree = "<group>"; };
65B36169121C261F003EAD18 /* qxtcountrycombobox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtcountrycombobox.cpp; sourceTree = "<group>"; };
65B3616A121C261F003EAD18 /* qxtcountrycombobox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtcountrycombobox.h; sourceTree = "<group>"; };
65B3616B121C261F003EAD18 /* qxtcountrycombobox_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtcountrycombobox_p.h; sourceTree = "<group>"; };
65B3616C121C261F003EAD18 /* qxtcountrymodel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtcountrymodel.cpp; sourceTree = "<group>"; };
65B3616D121C261F003EAD18 /* qxtcountrymodel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtcountrymodel.h; sourceTree = "<group>"; };
65B3616E121C261F003EAD18 /* qxtcountrymodel_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtcountrymodel_p.h; sourceTree = "<group>"; };
65B3616F121C261F003EAD18 /* qxtcrumbview.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtcrumbview.cpp; sourceTree = "<group>"; };
65B36170121C261F003EAD18 /* qxtcrumbview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtcrumbview.h; sourceTree = "<group>"; };
65B36171121C261F003EAD18 /* qxtcrumbview_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtcrumbview_p.h; sourceTree = "<group>"; };
65B36172121C261F003EAD18 /* qxtfilterdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtfilterdialog.cpp; sourceTree = "<group>"; };
65B36173121C261F003EAD18 /* qxtfilterdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtfilterdialog.h; sourceTree = "<group>"; };
65B36174121C261F003EAD18 /* qxtfilterdialog_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtfilterdialog_p.h; sourceTree = "<group>"; };
65B36175121C261F003EAD18 /* qxtflowview.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtflowview.cpp; sourceTree = "<group>"; };
65B36176121C261F003EAD18 /* qxtflowview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtflowview.h; sourceTree = "<group>"; };
65B36177121C261F003EAD18 /* qxtflowview_p.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtflowview_p.cpp; sourceTree = "<group>"; };
65B36178121C261F003EAD18 /* qxtflowview_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtflowview_p.h; sourceTree = "<group>"; };
65B36179121C261F003EAD18 /* qxtglobalshortcut.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtglobalshortcut.cpp; sourceTree = "<group>"; };
65B3617A121C261F003EAD18 /* qxtglobalshortcut.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtglobalshortcut.h; sourceTree = "<group>"; };
65B3617B121C261F003EAD18 /* qxtglobalshortcut_mac.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtglobalshortcut_mac.cpp; sourceTree = "<group>"; };
65B3617C121C261F003EAD18 /* qxtglobalshortcut_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtglobalshortcut_p.h; sourceTree = "<group>"; };
65B3617D121C261F003EAD18 /* qxtglobalshortcut_win.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtglobalshortcut_win.cpp; sourceTree = "<group>"; };
65B3617E121C261F003EAD18 /* qxtglobalshortcut_x11.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtglobalshortcut_x11.cpp; sourceTree = "<group>"; };
65B3617F121C261F003EAD18 /* qxtgroupbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtgroupbox.cpp; sourceTree = "<group>"; };
65B36180121C261F003EAD18 /* qxtgroupbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtgroupbox.h; sourceTree = "<group>"; };
65B36181121C261F003EAD18 /* qxtgui.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtgui.h; sourceTree = "<group>"; };
65B36182121C261F003EAD18 /* qxtheaderview.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtheaderview.cpp; sourceTree = "<group>"; };
65B36183121C261F003EAD18 /* qxtheaderview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtheaderview.h; sourceTree = "<group>"; };
65B36184121C261F003EAD18 /* qxtitemdelegate.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtitemdelegate.cpp; sourceTree = "<group>"; };
65B36185121C261F003EAD18 /* qxtitemdelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtitemdelegate.h; sourceTree = "<group>"; };
65B36186121C261F003EAD18 /* qxtitemdelegate_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtitemdelegate_p.h; sourceTree = "<group>"; };
65B36187121C261F003EAD18 /* qxtitemeditorcreator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtitemeditorcreator.h; sourceTree = "<group>"; };
65B36188121C261F003EAD18 /* qxtitemeditorcreatorbase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtitemeditorcreatorbase.h; sourceTree = "<group>"; };
65B36189121C261F003EAD18 /* qxtlabel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtlabel.cpp; sourceTree = "<group>"; };
65B3618A121C261F003EAD18 /* qxtlabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtlabel.h; sourceTree = "<group>"; };
65B3618B121C261F003EAD18 /* qxtlanguagecombobox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtlanguagecombobox.cpp; sourceTree = "<group>"; };
65B3618C121C261F003EAD18 /* qxtlanguagecombobox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtlanguagecombobox.h; sourceTree = "<group>"; };
65B3618D121C261F003EAD18 /* qxtlanguagecombobox_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtlanguagecombobox_p.h; sourceTree = "<group>"; };
65B3618E121C261F003EAD18 /* qxtletterboxwidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtletterboxwidget.cpp; sourceTree = "<group>"; };
65B3618F121C261F003EAD18 /* qxtletterboxwidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtletterboxwidget.h; sourceTree = "<group>"; };
65B36190121C261F003EAD18 /* qxtletterboxwidget_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtletterboxwidget_p.h; sourceTree = "<group>"; };
65B36191121C261F003EAD18 /* qxtlineedit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtlineedit.cpp; sourceTree = "<group>"; };
65B36192121C261F003EAD18 /* qxtlineedit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtlineedit.h; sourceTree = "<group>"; };
65B36193121C261F003EAD18 /* qxtlistwidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtlistwidget.cpp; sourceTree = "<group>"; };
65B36194121C261F003EAD18 /* qxtlistwidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtlistwidget.h; sourceTree = "<group>"; };
65B36195121C261F003EAD18 /* qxtlistwidget_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtlistwidget_p.h; sourceTree = "<group>"; };
65B36196121C261F003EAD18 /* qxtlistwidgetitem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtlistwidgetitem.cpp; sourceTree = "<group>"; };
65B36197121C261F003EAD18 /* qxtlistwidgetitem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtlistwidgetitem.h; sourceTree = "<group>"; };
65B36198121C261F003EAD18 /* qxtlookuplineedit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtlookuplineedit.cpp; sourceTree = "<group>"; };
65B36199121C261F003EAD18 /* qxtlookuplineedit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtlookuplineedit.h; sourceTree = "<group>"; };
65B3619A121C261F003EAD18 /* qxtlookuplineedit_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtlookuplineedit_p.h; sourceTree = "<group>"; };
65B3619B121C261F003EAD18 /* qxtnativeeventfilter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtnativeeventfilter.h; sourceTree = "<group>"; };
65B3619C121C261F003EAD18 /* qxtprogresslabel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtprogresslabel.cpp; sourceTree = "<group>"; };
65B3619D121C261F003EAD18 /* qxtprogresslabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtprogresslabel.h; sourceTree = "<group>"; };
65B3619E121C261F003EAD18 /* qxtproxystyle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtproxystyle.cpp; sourceTree = "<group>"; };
65B3619F121C261F003EAD18 /* qxtproxystyle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtproxystyle.h; sourceTree = "<group>"; };
65B361A0121C261F003EAD18 /* qxtpushbutton.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtpushbutton.cpp; sourceTree = "<group>"; };
65B361A1121C261F003EAD18 /* qxtpushbutton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtpushbutton.h; sourceTree = "<group>"; };
65B361A2121C261F003EAD18 /* qxtscheduleheaderwidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtscheduleheaderwidget.cpp; sourceTree = "<group>"; };
65B361A3121C261F003EAD18 /* qxtscheduleheaderwidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtscheduleheaderwidget.h; sourceTree = "<group>"; };
65B361A4121C261F003EAD18 /* qxtscheduleitemdelegate.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtscheduleitemdelegate.cpp; sourceTree = "<group>"; };
65B361A5121C261F003EAD18 /* qxtscheduleitemdelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtscheduleitemdelegate.h; sourceTree = "<group>"; };
65B361A6121C261F003EAD18 /* qxtscheduleview.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtscheduleview.cpp; sourceTree = "<group>"; };
65B361A7121C261F003EAD18 /* qxtscheduleview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtscheduleview.h; sourceTree = "<group>"; };
65B361A8121C261F003EAD18 /* qxtscheduleview_p.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtscheduleview_p.cpp; sourceTree = "<group>"; };
65B361A9121C261F003EAD18 /* qxtscheduleview_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtscheduleview_p.h; sourceTree = "<group>"; };
65B361AA121C261F003EAD18 /* qxtscheduleviewheadermodel_p.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtscheduleviewheadermodel_p.cpp; sourceTree = "<group>"; };
65B361AB121C261F003EAD18 /* qxtscheduleviewheadermodel_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtscheduleviewheadermodel_p.h; sourceTree = "<group>"; };
65B361AC121C261F003EAD18 /* qxtscreen.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtscreen.cpp; sourceTree = "<group>"; };
65B361AD121C261F003EAD18 /* qxtscreen.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtscreen.h; sourceTree = "<group>"; };
65B361AE121C261F003EAD18 /* qxtscreen_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtscreen_p.h; sourceTree = "<group>"; };
65B361AF121C261F003EAD18 /* qxtscreen_win.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtscreen_win.cpp; sourceTree = "<group>"; };
65B361B0121C261F003EAD18 /* qxtscreen_x11.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtscreen_x11.cpp; sourceTree = "<group>"; };
65B361B1121C261F003EAD18 /* qxtsortfilterproxymodel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtsortfilterproxymodel.cpp; sourceTree = "<group>"; };
65B361B2121C261F003EAD18 /* qxtsortfilterproxymodel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtsortfilterproxymodel.h; sourceTree = "<group>"; };
65B361B3121C261F003EAD18 /* qxtspanslider.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtspanslider.cpp; sourceTree = "<group>"; };
65B361B4121C261F003EAD18 /* qxtspanslider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtspanslider.h; sourceTree = "<group>"; };
65B361B5121C261F003EAD18 /* qxtspanslider_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtspanslider_p.h; sourceTree = "<group>"; };
65B361B6121C261F003EAD18 /* qxtstandarditemeditorcreator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtstandarditemeditorcreator.h; sourceTree = "<group>"; };
65B361B7121C261F003EAD18 /* qxtstars.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtstars.cpp; sourceTree = "<group>"; };
65B361B8121C261F003EAD18 /* qxtstars.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtstars.h; sourceTree = "<group>"; };
65B361B9121C261F003EAD18 /* qxtstringspinbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtstringspinbox.cpp; sourceTree = "<group>"; };
65B361BA121C261F003EAD18 /* qxtstringspinbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtstringspinbox.h; sourceTree = "<group>"; };
65B361BB121C261F003EAD18 /* qxtstringvalidator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtstringvalidator.cpp; sourceTree = "<group>"; };
65B361BC121C261F003EAD18 /* qxtstringvalidator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtstringvalidator.h; sourceTree = "<group>"; };
65B361BD121C261F003EAD18 /* qxtstringvalidator_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtstringvalidator_p.h; sourceTree = "<group>"; };
65B361BE121C261F003EAD18 /* qxtstyleoptionscheduleviewitem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtstyleoptionscheduleviewitem.cpp; sourceTree = "<group>"; };
65B361BF121C261F003EAD18 /* qxtstyleoptionscheduleviewitem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtstyleoptionscheduleviewitem.h; sourceTree = "<group>"; };
65B361C0121C261F003EAD18 /* qxttablewidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxttablewidget.cpp; sourceTree = "<group>"; };
65B361C1121C261F003EAD18 /* qxttablewidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxttablewidget.h; sourceTree = "<group>"; };
65B361C2121C261F003EAD18 /* qxttablewidget_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxttablewidget_p.h; sourceTree = "<group>"; };
65B361C3121C261F003EAD18 /* qxttablewidgetitem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxttablewidgetitem.cpp; sourceTree = "<group>"; };
65B361C4121C261F003EAD18 /* qxttablewidgetitem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxttablewidgetitem.h; sourceTree = "<group>"; };
65B361C5121C261F003EAD18 /* qxttabwidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxttabwidget.cpp; sourceTree = "<group>"; };
65B361C6121C261F003EAD18 /* qxttabwidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxttabwidget.h; sourceTree = "<group>"; };
65B361C7121C261F003EAD18 /* qxttabwidget_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxttabwidget_p.h; sourceTree = "<group>"; };
65B361C8121C261F003EAD18 /* qxttooltip.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxttooltip.cpp; sourceTree = "<group>"; };
65B361C9121C261F003EAD18 /* qxttooltip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxttooltip.h; sourceTree = "<group>"; };
65B361CA121C261F003EAD18 /* qxttooltip_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxttooltip_p.h; sourceTree = "<group>"; };
65B361CB121C261F003EAD18 /* qxttreewidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxttreewidget.cpp; sourceTree = "<group>"; };
65B361CC121C261F003EAD18 /* qxttreewidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxttreewidget.h; sourceTree = "<group>"; };
65B361CD121C261F003EAD18 /* qxttreewidget_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxttreewidget_p.h; sourceTree = "<group>"; };
65B361CE121C261F003EAD18 /* qxttreewidgetitem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxttreewidgetitem.cpp; sourceTree = "<group>"; };
65B361CF121C261F003EAD18 /* qxttreewidgetitem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxttreewidgetitem.h; sourceTree = "<group>"; };
65B361D0121C261F003EAD18 /* qxtwindowsystem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtwindowsystem.cpp; sourceTree = "<group>"; };
65B361D1121C261F003EAD18 /* qxtwindowsystem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtwindowsystem.h; sourceTree = "<group>"; };
65B361D2121C261F003EAD18 /* qxtwindowsystem_win.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtwindowsystem_win.cpp; sourceTree = "<group>"; };
65B361D3121C261F003EAD18 /* qxtwindowsystem_x11.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtwindowsystem_x11.cpp; sourceTree = "<group>"; };
65B361D6121C261F003EAD18 /* AD.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = AD.png; sourceTree = "<group>"; };
65B361D7121C261F003EAD18 /* AE.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = AE.png; sourceTree = "<group>"; };
65B361D8121C261F003EAD18 /* AF.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = AF.png; sourceTree = "<group>"; };
65B361D9121C261F003EAD18 /* AG.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = AG.png; sourceTree = "<group>"; };
65B361DA121C261F003EAD18 /* AI.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = AI.png; sourceTree = "<group>"; };
65B361DB121C261F003EAD18 /* AL.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = AL.png; sourceTree = "<group>"; };
65B361DC121C261F003EAD18 /* AM.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = AM.png; sourceTree = "<group>"; };
65B361DD121C261F003EAD18 /* AN.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = AN.png; sourceTree = "<group>"; };
65B361DE121C261F003EAD18 /* AO.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = AO.png; sourceTree = "<group>"; };
65B361DF121C261F003EAD18 /* AQ.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = AQ.png; sourceTree = "<group>"; };
65B361E0121C261F003EAD18 /* AR.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = AR.png; sourceTree = "<group>"; };
65B361E1121C261F003EAD18 /* AS.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = AS.png; sourceTree = "<group>"; };
65B361E2121C261F003EAD18 /* AT.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = AT.png; sourceTree = "<group>"; };
65B361E3121C261F003EAD18 /* AU.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = AU.png; sourceTree = "<group>"; };
65B361E4121C261F003EAD18 /* AW.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = AW.png; sourceTree = "<group>"; };
65B361E5121C261F003EAD18 /* AX.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = AX.png; sourceTree = "<group>"; };
65B361E6121C261F003EAD18 /* AZ.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = AZ.png; sourceTree = "<group>"; };
65B361E7121C261F003EAD18 /* BA.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = BA.png; sourceTree = "<group>"; };
65B361E8121C261F003EAD18 /* BB.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = BB.png; sourceTree = "<group>"; };
65B361E9121C261F003EAD18 /* BD.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = BD.png; sourceTree = "<group>"; };
65B361EA121C261F003EAD18 /* BE.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = BE.png; sourceTree = "<group>"; };
65B361EB121C261F003EAD18 /* BF.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = BF.png; sourceTree = "<group>"; };
65B361EC121C261F003EAD18 /* BG.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = BG.png; sourceTree = "<group>"; };
65B361ED121C261F003EAD18 /* BH.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = BH.png; sourceTree = "<group>"; };
65B361EE121C261F003EAD18 /* BI.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = BI.png; sourceTree = "<group>"; };
65B361EF121C261F003EAD18 /* BJ.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = BJ.png; sourceTree = "<group>"; };
65B361F0121C261F003EAD18 /* BM.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = BM.png; sourceTree = "<group>"; };
65B361F1121C261F003EAD18 /* BN.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = BN.png; sourceTree = "<group>"; };
65B361F2121C261F003EAD18 /* BO.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = BO.png; sourceTree = "<group>"; };
65B361F3121C261F003EAD18 /* BR.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = BR.png; sourceTree = "<group>"; };
65B361F4121C261F003EAD18 /* BS.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = BS.png; sourceTree = "<group>"; };
65B361F5121C261F003EAD18 /* BT.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = BT.png; sourceTree = "<group>"; };
65B361F6121C261F003EAD18 /* BV.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = BV.png; sourceTree = "<group>"; };
65B361F7121C261F003EAD18 /* BW.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = BW.png; sourceTree = "<group>"; };
65B361F8121C261F003EAD18 /* BY.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = BY.png; sourceTree = "<group>"; };
65B361F9121C261F003EAD18 /* BZ.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = BZ.png; sourceTree = "<group>"; };
65B361FA121C261F003EAD18 /* C.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = C.png; sourceTree = "<group>"; };
65B361FB121C261F003EAD18 /* CA.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = CA.png; sourceTree = "<group>"; };
65B361FC121C261F003EAD18 /* CC.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = CC.png; sourceTree = "<group>"; };
65B361FD121C261F003EAD18 /* CD.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = CD.png; sourceTree = "<group>"; };
65B361FE121C261F003EAD18 /* CF.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = CF.png; sourceTree = "<group>"; };
65B361FF121C261F003EAD18 /* CG.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = CG.png; sourceTree = "<group>"; };
65B36200121C261F003EAD18 /* CH.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = CH.png; sourceTree = "<group>"; };
65B36201121C261F003EAD18 /* CI.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = CI.png; sourceTree = "<group>"; };
65B36202121C261F003EAD18 /* CK.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = CK.png; sourceTree = "<group>"; };
65B36203121C261F003EAD18 /* CL.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = CL.png; sourceTree = "<group>"; };
65B36204121C261F003EAD18 /* CM.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = CM.png; sourceTree = "<group>"; };
65B36205121C261F003EAD18 /* CN.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = CN.png; sourceTree = "<group>"; };
65B36206121C261F003EAD18 /* CO.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = CO.png; sourceTree = "<group>"; };
65B36207121C261F003EAD18 /* CR.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = CR.png; sourceTree = "<group>"; };
65B36208121C261F003EAD18 /* CS.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = CS.png; sourceTree = "<group>"; };
65B36209121C261F003EAD18 /* CU.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = CU.png; sourceTree = "<group>"; };
65B3620A121C261F003EAD18 /* CV.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = CV.png; sourceTree = "<group>"; };
65B3620B121C261F003EAD18 /* CX.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = CX.png; sourceTree = "<group>"; };
65B3620C121C261F003EAD18 /* CY.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = CY.png; sourceTree = "<group>"; };
65B3620D121C261F003EAD18 /* CZ.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = CZ.png; sourceTree = "<group>"; };
65B3620E121C261F003EAD18 /* DE.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = DE.png; sourceTree = "<group>"; };
65B3620F121C261F003EAD18 /* DJ.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = DJ.png; sourceTree = "<group>"; };
65B36210121C261F003EAD18 /* DK.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = DK.png; sourceTree = "<group>"; };
65B36211121C261F003EAD18 /* DM.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = DM.png; sourceTree = "<group>"; };
65B36212121C261F003EAD18 /* DO.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = DO.png; sourceTree = "<group>"; };
65B36213121C261F003EAD18 /* DZ.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = DZ.png; sourceTree = "<group>"; };
65B36214121C261F003EAD18 /* EC.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = EC.png; sourceTree = "<group>"; };
65B36215121C261F003EAD18 /* EE.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = EE.png; sourceTree = "<group>"; };
65B36216121C261F003EAD18 /* EG.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = EG.png; sourceTree = "<group>"; };
65B36217121C261F003EAD18 /* EH.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = EH.png; sourceTree = "<group>"; };
65B36218121C261F003EAD18 /* ER.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ER.png; sourceTree = "<group>"; };
65B36219121C261F003EAD18 /* ES.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ES.png; sourceTree = "<group>"; };
65B3621A121C261F003EAD18 /* ET.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ET.png; sourceTree = "<group>"; };
65B3621B121C261F003EAD18 /* FI.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = FI.png; sourceTree = "<group>"; };
65B3621C121C261F003EAD18 /* FJ.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = FJ.png; sourceTree = "<group>"; };
65B3621D121C261F003EAD18 /* FK.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = FK.png; sourceTree = "<group>"; };
65B3621E121C261F003EAD18 /* FM.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = FM.png; sourceTree = "<group>"; };
65B3621F121C261F003EAD18 /* FO.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = FO.png; sourceTree = "<group>"; };
65B36220121C261F003EAD18 /* FR.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = FR.png; sourceTree = "<group>"; };
65B36221121C261F003EAD18 /* FX.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = FX.png; sourceTree = "<group>"; };
65B36222121C261F003EAD18 /* GA.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = GA.png; sourceTree = "<group>"; };
65B36223121C261F003EAD18 /* GB.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = GB.png; sourceTree = "<group>"; };
65B36224121C261F003EAD18 /* GD.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = GD.png; sourceTree = "<group>"; };
65B36225121C261F003EAD18 /* GE.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = GE.png; sourceTree = "<group>"; };
65B36226121C261F003EAD18 /* GF.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = GF.png; sourceTree = "<group>"; };
65B36227121C261F003EAD18 /* GG.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = GG.png; sourceTree = "<group>"; };
65B36228121C261F003EAD18 /* GH.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = GH.png; sourceTree = "<group>"; };
65B36229121C261F003EAD18 /* GI.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = GI.png; sourceTree = "<group>"; };
65B3622A121C261F003EAD18 /* GL.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = GL.png; sourceTree = "<group>"; };
65B3622B121C261F003EAD18 /* GM.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = GM.png; sourceTree = "<group>"; };
65B3622C121C261F003EAD18 /* GN.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = GN.png; sourceTree = "<group>"; };
65B3622D121C261F003EAD18 /* GP.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = GP.png; sourceTree = "<group>"; };
65B3622E121C261F003EAD18 /* GQ.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = GQ.png; sourceTree = "<group>"; };
65B3622F121C261F003EAD18 /* GR.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = GR.png; sourceTree = "<group>"; };
65B36230121C261F003EAD18 /* GS.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = GS.png; sourceTree = "<group>"; };
65B36231121C261F003EAD18 /* GT.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = GT.png; sourceTree = "<group>"; };
65B36232121C261F003EAD18 /* GU.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = GU.png; sourceTree = "<group>"; };
65B36233121C261F003EAD18 /* GW.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = GW.png; sourceTree = "<group>"; };
65B36234121C261F003EAD18 /* GY.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = GY.png; sourceTree = "<group>"; };
65B36235121C261F003EAD18 /* HK.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = HK.png; sourceTree = "<group>"; };
65B36236121C261F003EAD18 /* HM.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = HM.png; sourceTree = "<group>"; };
65B36237121C261F003EAD18 /* HN.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = HN.png; sourceTree = "<group>"; };
65B36238121C261F003EAD18 /* HR.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = HR.png; sourceTree = "<group>"; };
65B36239121C261F003EAD18 /* HT.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = HT.png; sourceTree = "<group>"; };
65B3623A121C261F003EAD18 /* HU.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = HU.png; sourceTree = "<group>"; };
65B3623B121C261F003EAD18 /* ID.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ID.png; sourceTree = "<group>"; };
65B3623C121C261F003EAD18 /* IE.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = IE.png; sourceTree = "<group>"; };
65B3623D121C261F003EAD18 /* IL.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = IL.png; sourceTree = "<group>"; };
65B3623E121C261F003EAD18 /* IM.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = IM.png; sourceTree = "<group>"; };
65B3623F121C261F003EAD18 /* IN.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = IN.png; sourceTree = "<group>"; };
65B36240121C261F003EAD18 /* IO.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = IO.png; sourceTree = "<group>"; };
65B36241121C261F003EAD18 /* IQ.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = IQ.png; sourceTree = "<group>"; };
65B36242121C261F003EAD18 /* IR.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = IR.png; sourceTree = "<group>"; };
65B36243121C261F003EAD18 /* IS.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = IS.png; sourceTree = "<group>"; };
65B36244121C261F003EAD18 /* IT.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = IT.png; sourceTree = "<group>"; };
65B36245121C261F003EAD18 /* JE.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = JE.png; sourceTree = "<group>"; };
65B36246121C261F003EAD18 /* JM.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = JM.png; sourceTree = "<group>"; };
65B36247121C261F003EAD18 /* JO.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = JO.png; sourceTree = "<group>"; };
65B36248121C261F003EAD18 /* JP.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = JP.png; sourceTree = "<group>"; };
65B36249121C261F003EAD18 /* KE.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = KE.png; sourceTree = "<group>"; };
65B3624A121C261F003EAD18 /* KG.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = KG.png; sourceTree = "<group>"; };
65B3624B121C261F003EAD18 /* KH.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = KH.png; sourceTree = "<group>"; };
65B3624C121C261F003EAD18 /* KI.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = KI.png; sourceTree = "<group>"; };
65B3624D121C261F003EAD18 /* KM.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = KM.png; sourceTree = "<group>"; };
65B3624E121C261F003EAD18 /* KN.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = KN.png; sourceTree = "<group>"; };
65B3624F121C261F003EAD18 /* KP.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = KP.png; sourceTree = "<group>"; };
65B36250121C261F003EAD18 /* KR.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = KR.png; sourceTree = "<group>"; };
65B36251121C261F003EAD18 /* KW.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = KW.png; sourceTree = "<group>"; };
65B36252121C261F003EAD18 /* KY.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = KY.png; sourceTree = "<group>"; };
65B36253121C261F003EAD18 /* KZ.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = KZ.png; sourceTree = "<group>"; };
65B36254121C261F003EAD18 /* LA.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = LA.png; sourceTree = "<group>"; };
65B36255121C261F003EAD18 /* LB.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = LB.png; sourceTree = "<group>"; };
65B36256121C261F003EAD18 /* LC.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = LC.png; sourceTree = "<group>"; };
65B36257121C261F003EAD18 /* LI.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = LI.png; sourceTree = "<group>"; };
65B36258121C261F003EAD18 /* LK.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = LK.png; sourceTree = "<group>"; };
65B36259121C261F003EAD18 /* LR.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = LR.png; sourceTree = "<group>"; };
65B3625A121C261F003EAD18 /* LS.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = LS.png; sourceTree = "<group>"; };
65B3625B121C261F003EAD18 /* LT.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = LT.png; sourceTree = "<group>"; };
65B3625C121C261F003EAD18 /* LU.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = LU.png; sourceTree = "<group>"; };
65B3625D121C261F003EAD18 /* LV.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = LV.png; sourceTree = "<group>"; };
65B3625E121C261F003EAD18 /* LY.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = LY.png; sourceTree = "<group>"; };
65B3625F121C261F003EAD18 /* MA.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = MA.png; sourceTree = "<group>"; };
65B36260121C261F003EAD18 /* MC.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = MC.png; sourceTree = "<group>"; };
65B36261121C261F003EAD18 /* MD.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = MD.png; sourceTree = "<group>"; };
65B36262121C261F003EAD18 /* ME.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ME.png; sourceTree = "<group>"; };
65B36263121C261F003EAD18 /* MG.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = MG.png; sourceTree = "<group>"; };
65B36264121C261F003EAD18 /* MH.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = MH.png; sourceTree = "<group>"; };
65B36265121C261F003EAD18 /* MK.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = MK.png; sourceTree = "<group>"; };
65B36266121C261F003EAD18 /* ML.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ML.png; sourceTree = "<group>"; };
65B36267121C261F003EAD18 /* MM.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = MM.png; sourceTree = "<group>"; };
65B36268121C261F003EAD18 /* MN.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = MN.png; sourceTree = "<group>"; };
65B36269121C261F003EAD18 /* MO.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = MO.png; sourceTree = "<group>"; };
65B3626A121C261F003EAD18 /* MP.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = MP.png; sourceTree = "<group>"; };
65B3626B121C261F003EAD18 /* MQ.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = MQ.png; sourceTree = "<group>"; };
65B3626C121C261F003EAD18 /* MR.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = MR.png; sourceTree = "<group>"; };
65B3626D121C261F003EAD18 /* MS.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = MS.png; sourceTree = "<group>"; };
65B3626E121C261F003EAD18 /* MT.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = MT.png; sourceTree = "<group>"; };
65B3626F121C261F003EAD18 /* MU.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = MU.png; sourceTree = "<group>"; };
65B36270121C261F003EAD18 /* MV.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = MV.png; sourceTree = "<group>"; };
65B36271121C261F003EAD18 /* MW.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = MW.png; sourceTree = "<group>"; };
65B36272121C261F003EAD18 /* MX.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = MX.png; sourceTree = "<group>"; };
65B36273121C261F003EAD18 /* MY.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = MY.png; sourceTree = "<group>"; };
65B36274121C261F003EAD18 /* MZ.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = MZ.png; sourceTree = "<group>"; };
65B36275121C261F003EAD18 /* NA.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = NA.png; sourceTree = "<group>"; };
65B36276121C261F003EAD18 /* NC.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = NC.png; sourceTree = "<group>"; };
65B36277121C261F003EAD18 /* NE.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = NE.png; sourceTree = "<group>"; };
65B36278121C261F003EAD18 /* NF.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = NF.png; sourceTree = "<group>"; };
65B36279121C261F003EAD18 /* NG.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = NG.png; sourceTree = "<group>"; };
65B3627A121C261F003EAD18 /* NI.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = NI.png; sourceTree = "<group>"; };
65B3627B121C261F003EAD18 /* NL.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = NL.png; sourceTree = "<group>"; };
65B3627C121C261F003EAD18 /* NO.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = NO.png; sourceTree = "<group>"; };
65B3627D121C261F003EAD18 /* NP.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = NP.png; sourceTree = "<group>"; };
65B3627E121C261F003EAD18 /* NR.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = NR.png; sourceTree = "<group>"; };
65B3627F121C261F003EAD18 /* NU.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = NU.png; sourceTree = "<group>"; };
65B36280121C261F003EAD18 /* NZ.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = NZ.png; sourceTree = "<group>"; };
65B36281121C261F003EAD18 /* OM.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = OM.png; sourceTree = "<group>"; };
65B36282121C261F003EAD18 /* PA.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PA.png; sourceTree = "<group>"; };
65B36283121C261F003EAD18 /* PE.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PE.png; sourceTree = "<group>"; };
65B36284121C261F003EAD18 /* PF.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PF.png; sourceTree = "<group>"; };
65B36285121C261F003EAD18 /* PG.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PG.png; sourceTree = "<group>"; };
65B36286121C261F003EAD18 /* PH.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PH.png; sourceTree = "<group>"; };
65B36287121C261F003EAD18 /* PK.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PK.png; sourceTree = "<group>"; };
65B36288121C261F003EAD18 /* PL.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PL.png; sourceTree = "<group>"; };
65B36289121C261F003EAD18 /* PM.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PM.png; sourceTree = "<group>"; };
65B3628A121C261F003EAD18 /* PN.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PN.png; sourceTree = "<group>"; };
65B3628B121C261F003EAD18 /* PR.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PR.png; sourceTree = "<group>"; };
65B3628C121C261F003EAD18 /* PS.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PS.png; sourceTree = "<group>"; };
65B3628D121C261F003EAD18 /* PT.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PT.png; sourceTree = "<group>"; };
65B3628E121C261F003EAD18 /* PW.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PW.png; sourceTree = "<group>"; };
65B3628F121C261F003EAD18 /* PY.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = PY.png; sourceTree = "<group>"; };
65B36290121C261F003EAD18 /* QA.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = QA.png; sourceTree = "<group>"; };
65B36291121C261F003EAD18 /* RE.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = RE.png; sourceTree = "<group>"; };
65B36292121C261F003EAD18 /* RO.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = RO.png; sourceTree = "<group>"; };
65B36293121C261F003EAD18 /* RS.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = RS.png; sourceTree = "<group>"; };
65B36294121C261F003EAD18 /* RU.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = RU.png; sourceTree = "<group>"; };
65B36295121C261F003EAD18 /* RW.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = RW.png; sourceTree = "<group>"; };
65B36296121C261F003EAD18 /* SA.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = SA.png; sourceTree = "<group>"; };
65B36297121C261F003EAD18 /* SB.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = SB.png; sourceTree = "<group>"; };
65B36298121C261F003EAD18 /* SC.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = SC.png; sourceTree = "<group>"; };
65B36299121C261F003EAD18 /* SD.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = SD.png; sourceTree = "<group>"; };
65B3629A121C261F003EAD18 /* SE.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = SE.png; sourceTree = "<group>"; };
65B3629B121C261F003EAD18 /* SG.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = SG.png; sourceTree = "<group>"; };
65B3629C121C261F003EAD18 /* SH.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = SH.png; sourceTree = "<group>"; };
65B3629D121C261F003EAD18 /* SI.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = SI.png; sourceTree = "<group>"; };
65B3629E121C261F003EAD18 /* SJ.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = SJ.png; sourceTree = "<group>"; };
65B3629F121C261F003EAD18 /* SK.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = SK.png; sourceTree = "<group>"; };
65B362A0121C261F003EAD18 /* SL.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = SL.png; sourceTree = "<group>"; };
65B362A1121C261F003EAD18 /* SM.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = SM.png; sourceTree = "<group>"; };
65B362A2121C261F003EAD18 /* SN.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = SN.png; sourceTree = "<group>"; };
65B362A3121C261F003EAD18 /* SO.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = SO.png; sourceTree = "<group>"; };
65B362A4121C261F003EAD18 /* SR.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = SR.png; sourceTree = "<group>"; };
65B362A5121C261F003EAD18 /* ST.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ST.png; sourceTree = "<group>"; };
65B362A6121C261F003EAD18 /* SV.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = SV.png; sourceTree = "<group>"; };
65B362A7121C261F003EAD18 /* SY.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = SY.png; sourceTree = "<group>"; };
65B362A8121C261F003EAD18 /* SZ.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = SZ.png; sourceTree = "<group>"; };
65B362A9121C261F003EAD18 /* TC.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TC.png; sourceTree = "<group>"; };
65B362AA121C261F003EAD18 /* TD.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TD.png; sourceTree = "<group>"; };
65B362AB121C261F003EAD18 /* TF.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TF.png; sourceTree = "<group>"; };
65B362AC121C261F003EAD18 /* TG.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TG.png; sourceTree = "<group>"; };
65B362AD121C261F003EAD18 /* TH.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TH.png; sourceTree = "<group>"; };
65B362AE121C261F003EAD18 /* TJ.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TJ.png; sourceTree = "<group>"; };
65B362AF121C261F003EAD18 /* TK.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TK.png; sourceTree = "<group>"; };
65B362B0121C261F003EAD18 /* TL.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TL.png; sourceTree = "<group>"; };
65B362B1121C261F003EAD18 /* TM.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TM.png; sourceTree = "<group>"; };
65B362B2121C261F003EAD18 /* TN.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TN.png; sourceTree = "<group>"; };
65B362B3121C261F003EAD18 /* TO.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TO.png; sourceTree = "<group>"; };
65B362B4121C261F003EAD18 /* TR.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TR.png; sourceTree = "<group>"; };
65B362B5121C261F003EAD18 /* TT.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TT.png; sourceTree = "<group>"; };
65B362B6121C261F003EAD18 /* TV.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TV.png; sourceTree = "<group>"; };
65B362B7121C261F003EAD18 /* TW.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TW.png; sourceTree = "<group>"; };
65B362B8121C261F003EAD18 /* TZ.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TZ.png; sourceTree = "<group>"; };
65B362B9121C261F003EAD18 /* UA.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = UA.png; sourceTree = "<group>"; };
65B362BA121C261F003EAD18 /* UG.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = UG.png; sourceTree = "<group>"; };
65B362BB121C261F003EAD18 /* UM.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = UM.png; sourceTree = "<group>"; };
65B362BC121C261F003EAD18 /* US.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = US.png; sourceTree = "<group>"; };
65B362BD121C261F003EAD18 /* UY.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = UY.png; sourceTree = "<group>"; };
65B362BE121C261F003EAD18 /* UZ.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = UZ.png; sourceTree = "<group>"; };
65B362BF121C261F003EAD18 /* VA.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = VA.png; sourceTree = "<group>"; };
65B362C0121C261F003EAD18 /* VC.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = VC.png; sourceTree = "<group>"; };
65B362C1121C261F003EAD18 /* VE.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = VE.png; sourceTree = "<group>"; };
65B362C2121C261F003EAD18 /* VG.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = VG.png; sourceTree = "<group>"; };
65B362C3121C261F003EAD18 /* VI.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = VI.png; sourceTree = "<group>"; };
65B362C4121C261F003EAD18 /* VN.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = VN.png; sourceTree = "<group>"; };
65B362C5121C261F003EAD18 /* VU.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = VU.png; sourceTree = "<group>"; };
65B362C6121C261F003EAD18 /* WF.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = WF.png; sourceTree = "<group>"; };
65B362C7121C261F003EAD18 /* WS.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = WS.png; sourceTree = "<group>"; };
65B362C8121C261F003EAD18 /* YE.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = YE.png; sourceTree = "<group>"; };
65B362C9121C261F003EAD18 /* YT.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = YT.png; sourceTree = "<group>"; };
65B362CA121C261F003EAD18 /* ZA.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZA.png; sourceTree = "<group>"; };
65B362CB121C261F003EAD18 /* ZM.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZM.png; sourceTree = "<group>"; };
65B362CC121C261F003EAD18 /* ZW.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ZW.png; sourceTree = "<group>"; };
65B362CD121C261F003EAD18 /* resources.qrc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = resources.qrc; sourceTree = "<group>"; };
65B362CF121C261F003EAD18 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
65B362D0121C261F003EAD18 /* network.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = network.pri; sourceTree = "<group>"; };
65B362D1121C261F003EAD18 /* network.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = network.pro; sourceTree = "<group>"; };
65B362D2121C261F003EAD18 /* qxtjsonrpccall.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtjsonrpccall.cpp; sourceTree = "<group>"; };
65B362D3121C261F003EAD18 /* qxtjsonrpccall.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtjsonrpccall.h; sourceTree = "<group>"; };
65B362D4121C261F003EAD18 /* qxtjsonrpcclient.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtjsonrpcclient.cpp; sourceTree = "<group>"; };
65B362D5121C261F003EAD18 /* qxtjsonrpcclient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtjsonrpcclient.h; sourceTree = "<group>"; };
65B362D6121C261F003EAD18 /* qxtmail_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtmail_p.h; sourceTree = "<group>"; };
65B362D7121C261F003EAD18 /* qxtmailattachment.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtmailattachment.cpp; sourceTree = "<group>"; };
65B362D8121C261F003EAD18 /* qxtmailattachment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtmailattachment.h; sourceTree = "<group>"; };
65B362D9121C261F003EAD18 /* qxtmailmessage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtmailmessage.cpp; sourceTree = "<group>"; };
65B362DA121C261F003EAD18 /* qxtmailmessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtmailmessage.h; sourceTree = "<group>"; };
65B362DB121C261F003EAD18 /* qxtnetwork.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtnetwork.h; sourceTree = "<group>"; };
65B362DC121C261F003EAD18 /* qxtrpcpeer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtrpcpeer.cpp; sourceTree = "<group>"; };
65B362DD121C261F003EAD18 /* qxtrpcpeer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtrpcpeer.h; sourceTree = "<group>"; };
65B362DE121C261F003EAD18 /* qxtsmtp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtsmtp.cpp; sourceTree = "<group>"; };
65B362DF121C261F003EAD18 /* qxtsmtp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtsmtp.h; sourceTree = "<group>"; };
65B362E0121C261F003EAD18 /* qxtsmtp_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtsmtp_p.h; sourceTree = "<group>"; };
65B362E1121C261F003EAD18 /* qxttcpconnectionmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxttcpconnectionmanager.cpp; sourceTree = "<group>"; };
65B362E2121C261F003EAD18 /* qxttcpconnectionmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxttcpconnectionmanager.h; sourceTree = "<group>"; };
65B362E3121C261F003EAD18 /* qxttcpconnectionmanager_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxttcpconnectionmanager_p.h; sourceTree = "<group>"; };
65B362E4121C261F003EAD18 /* qxtxmlrpc_p.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtxmlrpc_p.cpp; sourceTree = "<group>"; };
65B362E5121C261F003EAD18 /* qxtxmlrpc_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtxmlrpc_p.h; sourceTree = "<group>"; };
65B362E6121C261F003EAD18 /* qxtxmlrpccall.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtxmlrpccall.cpp; sourceTree = "<group>"; };
65B362E7121C261F003EAD18 /* qxtxmlrpccall.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtxmlrpccall.h; sourceTree = "<group>"; };
65B362E8121C261F003EAD18 /* qxtxmlrpcclient.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtxmlrpcclient.cpp; sourceTree = "<group>"; };
65B362E9121C261F003EAD18 /* qxtxmlrpcclient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtxmlrpcclient.h; sourceTree = "<group>"; };
65B362EA121C261F003EAD18 /* qxtbase.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = qxtbase.pri; sourceTree = "<group>"; };
65B362EB121C261F003EAD18 /* qxtlibs.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = qxtlibs.pri; sourceTree = "<group>"; };
65B362ED121C261F003EAD18 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
65B362EE121C261F003EAD18 /* qxtsql.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtsql.h; sourceTree = "<group>"; };
65B362EF121C261F003EAD18 /* qxtsqlpackage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtsqlpackage.cpp; sourceTree = "<group>"; };
65B362F0121C261F003EAD18 /* qxtsqlpackage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtsqlpackage.h; sourceTree = "<group>"; };
65B362F1121C261F003EAD18 /* qxtsqlpackagemodel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtsqlpackagemodel.cpp; sourceTree = "<group>"; };
65B362F2121C261F003EAD18 /* qxtsqlpackagemodel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtsqlpackagemodel.h; sourceTree = "<group>"; };
65B362F3121C261F003EAD18 /* sql.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = sql.pri; sourceTree = "<group>"; };
65B362F4121C261F003EAD18 /* sql.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = sql.pro; sourceTree = "<group>"; };
65B362F6121C261F003EAD18 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
65B362F7121C261F003EAD18 /* qxtabstracthttpconnector.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtabstracthttpconnector.cpp; sourceTree = "<group>"; };
65B362F8121C261F003EAD18 /* qxtabstracthttpconnector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtabstracthttpconnector.h; sourceTree = "<group>"; };
65B362F9121C261F003EAD18 /* qxtabstractwebservice.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtabstractwebservice.cpp; sourceTree = "<group>"; };
65B362FA121C261F003EAD18 /* qxtabstractwebservice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtabstractwebservice.h; sourceTree = "<group>"; };
65B362FB121C261F003EAD18 /* qxtabstractwebsessionmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtabstractwebsessionmanager.cpp; sourceTree = "<group>"; };
65B362FC121C261F003EAD18 /* qxtabstractwebsessionmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtabstractwebsessionmanager.h; sourceTree = "<group>"; };
65B362FD121C261F003EAD18 /* qxtabstractwebsessionmanager_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtabstractwebsessionmanager_p.h; sourceTree = "<group>"; };
65B362FE121C261F003EAD18 /* qxthtmltemplate.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxthtmltemplate.cpp; sourceTree = "<group>"; };
65B362FF121C261F003EAD18 /* qxthtmltemplate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxthtmltemplate.h; sourceTree = "<group>"; };
65B36300121C261F003EAD18 /* qxthttpserverconnector.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxthttpserverconnector.cpp; sourceTree = "<group>"; };
65B36301121C261F003EAD18 /* qxthttpsessionmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxthttpsessionmanager.cpp; sourceTree = "<group>"; };
65B36302121C261F003EAD18 /* qxthttpsessionmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxthttpsessionmanager.h; sourceTree = "<group>"; };
65B36303121C261F003EAD18 /* qxtscgiserverconnector.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtscgiserverconnector.cpp; sourceTree = "<group>"; };
65B36304121C261F003EAD18 /* qxtweb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtweb.h; sourceTree = "<group>"; };
65B36305121C261F003EAD18 /* qxtwebcgiservice.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtwebcgiservice.cpp; sourceTree = "<group>"; };
65B36306121C261F003EAD18 /* qxtwebcgiservice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtwebcgiservice.h; sourceTree = "<group>"; };
65B36307121C261F003EAD18 /* qxtwebcgiservice_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtwebcgiservice_p.h; sourceTree = "<group>"; };
65B36308121C261F003EAD18 /* qxtwebcontent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtwebcontent.cpp; sourceTree = "<group>"; };
65B36309121C261F003EAD18 /* qxtwebcontent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtwebcontent.h; sourceTree = "<group>"; };
65B3630A121C261F003EAD18 /* qxtwebevent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtwebevent.cpp; sourceTree = "<group>"; };
65B3630B121C261F003EAD18 /* qxtwebevent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtwebevent.h; sourceTree = "<group>"; };
65B3630C121C261F003EAD18 /* qxtwebservicedirectory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtwebservicedirectory.cpp; sourceTree = "<group>"; };
65B3630D121C261F003EAD18 /* qxtwebservicedirectory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtwebservicedirectory.h; sourceTree = "<group>"; };
65B3630E121C261F003EAD18 /* qxtwebservicedirectory_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtwebservicedirectory_p.h; sourceTree = "<group>"; };
65B3630F121C261F003EAD18 /* qxtwebslotservice.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtwebslotservice.cpp; sourceTree = "<group>"; };
65B36310121C261F003EAD18 /* qxtwebslotservice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtwebslotservice.h; sourceTree = "<group>"; };
65B36311121C261F003EAD18 /* web.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = web.pri; sourceTree = "<group>"; };
65B36312121C261F003EAD18 /* web.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = web.pro; sourceTree = "<group>"; };
65B36314121C261F003EAD18 /* qxtavahipoll.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtavahipoll.cpp; sourceTree = "<group>"; };
65B36315121C261F003EAD18 /* qxtavahipoll.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtavahipoll.h; sourceTree = "<group>"; };
65B36316121C261F003EAD18 /* qxtavahipoll_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtavahipoll_p.h; sourceTree = "<group>"; };
65B36317121C261F003EAD18 /* qxtdiscoverableservice.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtdiscoverableservice.cpp; sourceTree = "<group>"; };
65B36318121C261F003EAD18 /* qxtdiscoverableservice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtdiscoverableservice.h; sourceTree = "<group>"; };
65B36319121C261F003EAD18 /* qxtdiscoverableservice_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtdiscoverableservice_p.h; sourceTree = "<group>"; };
65B3631A121C261F003EAD18 /* qxtdiscoverableservicename.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtdiscoverableservicename.cpp; sourceTree = "<group>"; };
65B3631B121C261F003EAD18 /* qxtdiscoverableservicename.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtdiscoverableservicename.h; sourceTree = "<group>"; };
65B3631C121C261F003EAD18 /* qxtmdns_avahi.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtmdns_avahi.cpp; sourceTree = "<group>"; };
65B3631D121C261F003EAD18 /* qxtmdns_avahi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtmdns_avahi.h; sourceTree = "<group>"; };
65B3631E121C261F003EAD18 /* qxtmdns_avahi_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtmdns_avahi_p.h; sourceTree = "<group>"; };
65B3631F121C261F003EAD18 /* qxtmdns_bonjour.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtmdns_bonjour.cpp; sourceTree = "<group>"; };
65B36320121C261F003EAD18 /* qxtmdns_bonjour.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtmdns_bonjour.h; sourceTree = "<group>"; };
65B36321121C261F003EAD18 /* qxtservicebrowser.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qxtservicebrowser.cpp; sourceTree = "<group>"; };
65B36322121C261F003EAD18 /* qxtservicebrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtservicebrowser.h; sourceTree = "<group>"; };
65B36323121C261F003EAD18 /* qxtservicebrowser_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtservicebrowser_p.h; sourceTree = "<group>"; };
65B36324121C261F003EAD18 /* qxtzeroconf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qxtzeroconf.h; sourceTree = "<group>"; };
65B36325121C261F003EAD18 /* zeroconf.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = zeroconf.pri; sourceTree = "<group>"; };
65B36326121C261F003EAD18 /* zeroconf.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = zeroconf.pro; sourceTree = "<group>"; };
65B36328121C261F003EAD18 /* gen_qlocale.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gen_qlocale.cpp; sourceTree = "<group>"; };
65B36329121C261F003EAD18 /* qxt_de.ts */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = qxt_de.ts; sourceTree = "<group>"; };
65B3632A121C261F003EAD18 /* qxt_en.ts */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = qxt_en.ts; sourceTree = "<group>"; };
65B3632B121C261F003EAD18 /* qxt_es.ts */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = qxt_es.ts; sourceTree = "<group>"; };
65B3632C121C261F003EAD18 /* qxt_fi.ts */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = qxt_fi.ts; sourceTree = "<group>"; };
65B3632D121C261F003EAD18 /* qxt_fr.ts */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = qxt_fr.ts; sourceTree = "<group>"; };
65B3632E121C261F003EAD18 /* qxt_it.ts */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = qxt_it.ts; sourceTree = "<group>"; };
65B3632F121C261F003EAD18 /* libs.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libs.pro; sourceTree = "<group>"; };
65B36331121C261F003EAD18 /* opmapcontrol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opmapcontrol.h; sourceTree = "<group>"; };
65B36332121C261F003EAD18 /* opmapcontrol.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = opmapcontrol.pri; sourceTree = "<group>"; };
65B36333121C261F003EAD18 /* opmapcontrol.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = opmapcontrol.pro; sourceTree = "<group>"; };
65B36335121C261F003EAD18 /* common.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = common.pri; sourceTree = "<group>"; };
65B36337121C261F003EAD18 /* accessmode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = accessmode.h; sourceTree = "<group>"; };
65B36338121C261F003EAD18 /* alllayersoftype.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = alllayersoftype.cpp; sourceTree = "<group>"; };
65B36339121C261F003EAD18 /* alllayersoftype.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = alllayersoftype.h; sourceTree = "<group>"; };
65B3633A121C261F003EAD18 /* cache.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = cache.cpp; sourceTree = "<group>"; };
65B3633B121C261F003EAD18 /* cache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cache.h; sourceTree = "<group>"; };
65B3633C121C261F003EAD18 /* cacheitemqueue.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = cacheitemqueue.cpp; sourceTree = "<group>"; };
65B3633D121C261F003EAD18 /* cacheitemqueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cacheitemqueue.h; sourceTree = "<group>"; };
65B3633E121C261F003EAD18 /* core.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = core.pro; sourceTree = "<group>"; };
65B3633F121C261F003EAD18 /* debugheader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = debugheader.h; sourceTree = "<group>"; };
65B36340121C261F003EAD18 /* geodecoderstatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = geodecoderstatus.h; sourceTree = "<group>"; };
65B36341121C261F003EAD18 /* kibertilecache.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = kibertilecache.cpp; sourceTree = "<group>"; };
65B36342121C261F003EAD18 /* kibertilecache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = kibertilecache.h; sourceTree = "<group>"; };
65B36343121C261F003EAD18 /* languagetype.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = languagetype.cpp; sourceTree = "<group>"; };
65B36344121C261F003EAD18 /* languagetype.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = languagetype.h; sourceTree = "<group>"; };
65B36345121C261F003EAD18 /* maptype.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = maptype.h; sourceTree = "<group>"; };
65B36346121C261F003EAD18 /* memorycache.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = memorycache.cpp; sourceTree = "<group>"; };
65B36347121C261F003EAD18 /* memorycache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = memorycache.h; sourceTree = "<group>"; };
65B36348121C261F003EAD18 /* opmaps.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = opmaps.cpp; sourceTree = "<group>"; };
65B36349121C261F003EAD18 /* opmaps.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opmaps.h; sourceTree = "<group>"; };
65B3634A121C261F003EAD18 /* placemark.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = placemark.cpp; sourceTree = "<group>"; };
65B3634B121C261F003EAD18 /* placemark.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = placemark.h; sourceTree = "<group>"; };
65B3634C121C261F003EAD18 /* point.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = point.cpp; sourceTree = "<group>"; };
65B3634D121C261F003EAD18 /* point.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = point.h; sourceTree = "<group>"; };
65B3634E121C261F003EAD18 /* providerstrings.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = providerstrings.cpp; sourceTree = "<group>"; };
65B3634F121C261F003EAD18 /* providerstrings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = providerstrings.h; sourceTree = "<group>"; };
65B36350121C261F003EAD18 /* pureimage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pureimage.cpp; sourceTree = "<group>"; };
65B36351121C261F003EAD18 /* pureimage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pureimage.h; sourceTree = "<group>"; };
65B36352121C261F003EAD18 /* pureimagecache.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pureimagecache.cpp; sourceTree = "<group>"; };
65B36353121C261F003EAD18 /* pureimagecache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pureimagecache.h; sourceTree = "<group>"; };
65B36354121C261F003EAD18 /* rawtile.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rawtile.cpp; sourceTree = "<group>"; };
65B36355121C261F003EAD18 /* rawtile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rawtile.h; sourceTree = "<group>"; };
65B36356121C261F003EAD18 /* size.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = size.cpp; sourceTree = "<group>"; };
65B36357121C261F003EAD18 /* size.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = size.h; sourceTree = "<group>"; };
65B36358121C261F003EAD18 /* tilecachequeue.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tilecachequeue.cpp; sourceTree = "<group>"; };
65B36359121C261F003EAD18 /* tilecachequeue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tilecachequeue.h; sourceTree = "<group>"; };
65B3635A121C261F003EAD18 /* urlfactory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = urlfactory.cpp; sourceTree = "<group>"; };
65B3635B121C261F003EAD18 /* urlfactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = urlfactory.h; sourceTree = "<group>"; };
65B3635D121C261F003EAD18 /* copyrightstrings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = copyrightstrings.h; sourceTree = "<group>"; };
65B3635E121C261F003EAD18 /* core.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = core.cpp; sourceTree = "<group>"; };
65B3635F121C261F003EAD18 /* core.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = core.h; sourceTree = "<group>"; };
65B36360121C261F003EAD18 /* debugheader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = debugheader.h; sourceTree = "<group>"; };
65B36361121C261F003EAD18 /* internals.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = internals.pro; sourceTree = "<group>"; };
65B36362121C261F003EAD18 /* loadtask.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = loadtask.cpp; sourceTree = "<group>"; };
65B36363121C261F003EAD18 /* loadtask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = loadtask.h; sourceTree = "<group>"; };
65B36364121C261F003EAD18 /* MouseWheelZoomType.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MouseWheelZoomType.cpp; sourceTree = "<group>"; };
65B36365121C261F003EAD18 /* mousewheelzoomtype.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mousewheelzoomtype.h; sourceTree = "<group>"; };
65B36366121C261F003EAD18 /* pointlatlng.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pointlatlng.cpp; sourceTree = "<group>"; };
65B36367121C261F003EAD18 /* pointlatlng.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pointlatlng.h; sourceTree = "<group>"; };
65B36369121C261F003EAD18 /* lks94projection.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = lks94projection.cpp; sourceTree = "<group>"; };
65B3636A121C261F003EAD18 /* lks94projection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lks94projection.h; sourceTree = "<group>"; };
65B3636B121C261F003EAD18 /* mercatorprojection.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mercatorprojection.cpp; sourceTree = "<group>"; };
65B3636C121C261F003EAD18 /* mercatorprojection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mercatorprojection.h; sourceTree = "<group>"; };
65B3636D121C261F003EAD18 /* mercatorprojectionyandex.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mercatorprojectionyandex.cpp; sourceTree = "<group>"; };
65B3636E121C261F003EAD18 /* mercatorprojectionyandex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mercatorprojectionyandex.h; sourceTree = "<group>"; };
65B3636F121C261F003EAD18 /* platecarreeprojection.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = platecarreeprojection.cpp; sourceTree = "<group>"; };
65B36370121C261F003EAD18 /* platecarreeprojection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = platecarreeprojection.h; sourceTree = "<group>"; };
65B36371121C261F003EAD18 /* platecarreeprojectionpergo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = platecarreeprojectionpergo.cpp; sourceTree = "<group>"; };
65B36372121C261F003EAD18 /* platecarreeprojectionpergo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = platecarreeprojectionpergo.h; sourceTree = "<group>"; };
65B36373121C261F003EAD18 /* pureprojection.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pureprojection.cpp; sourceTree = "<group>"; };
65B36374121C261F003EAD18 /* pureprojection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pureprojection.h; sourceTree = "<group>"; };
65B36375121C261F003EAD18 /* rectangle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rectangle.cpp; sourceTree = "<group>"; };
65B36376121C261F003EAD18 /* rectangle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rectangle.h; sourceTree = "<group>"; };
65B36377121C261F003EAD18 /* rectlatlng.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rectlatlng.cpp; sourceTree = "<group>"; };
65B36378121C261F003EAD18 /* rectlatlng.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rectlatlng.h; sourceTree = "<group>"; };
65B36379121C261F003EAD18 /* sizelatlng.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sizelatlng.cpp; sourceTree = "<group>"; };
65B3637A121C261F003EAD18 /* sizelatlng.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sizelatlng.h; sourceTree = "<group>"; };
65B3637B121C261F003EAD18 /* tile.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tile.cpp; sourceTree = "<group>"; };
65B3637C121C261F003EAD18 /* tile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tile.h; sourceTree = "<group>"; };
65B3637D121C261F003EAD18 /* tilematrix.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tilematrix.cpp; sourceTree = "<group>"; };
65B3637E121C261F003EAD18 /* tilematrix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tilematrix.h; sourceTree = "<group>"; };
65B36380121C261F003EAD18 /* configuration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = configuration.cpp; sourceTree = "<group>"; };
65B36381121C261F003EAD18 /* configuration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = configuration.h; sourceTree = "<group>"; };
65B36382121C261F003EAD18 /* homeitem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = homeitem.cpp; sourceTree = "<group>"; };
65B36383121C261F003EAD18 /* homeitem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = homeitem.h; sourceTree = "<group>"; };
65B36385121C261F003EAD18 /* airplane.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = airplane.png; sourceTree = "<group>"; };
65B36386121C261F003EAD18 /* airplane.svg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = airplane.svg; sourceTree = "<group>"; };
65B36387121C261F003EAD18 /* airplanepip.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = airplanepip.png; sourceTree = "<group>"; };
65B36388121C261F003EAD18 /* bigMarkerGreen.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = bigMarkerGreen.png; sourceTree = "<group>"; };
65B36389121C261F003EAD18 /* compas.svg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = compas.svg; sourceTree = "<group>"; };
65B3638A121C261F003EAD18 /* EasystarBlue.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = EasystarBlue.png; sourceTree = "<group>"; };
65B3638B121C261F003EAD18 /* home.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = home.png; sourceTree = "<group>"; };
65B3638C121C261F003EAD18 /* home.svg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = home.svg; sourceTree = "<group>"; };
65B3638D121C261F003EAD18 /* home2.svg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = home2.svg; sourceTree = "<group>"; };
65B3638E121C261F003EAD18 /* mapquad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = mapquad.png; sourceTree = "<group>"; };
65B3638F121C261F003EAD18 /* marker.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = marker.png; sourceTree = "<group>"; };
65B36390121C261F003EAD18 /* mapgraphicitem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mapgraphicitem.cpp; sourceTree = "<group>"; };
65B36391121C261F003EAD18 /* mapgraphicitem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mapgraphicitem.h; sourceTree = "<group>"; };
65B36392121C261F003EAD18 /* mapresources.qrc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = mapresources.qrc; sourceTree = "<group>"; };
65B36393121C261F003EAD18 /* mapripform.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mapripform.cpp; sourceTree = "<group>"; };
65B36394121C261F003EAD18 /* mapripform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mapripform.h; sourceTree = "<group>"; };
65B36395121C261F003EAD18 /* mapripform.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = mapripform.ui; sourceTree = "<group>"; };
65B36396121C261F003EAD18 /* mapripper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mapripper.cpp; sourceTree = "<group>"; };
65B36397121C261F003EAD18 /* mapripper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mapripper.h; sourceTree = "<group>"; };
65B36398121C261F003EAD18 /* mapwidget.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = mapwidget.pro; sourceTree = "<group>"; };
65B36399121C261F003EAD18 /* opmapwidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = opmapwidget.cpp; sourceTree = "<group>"; };
65B3639A121C261F003EAD18 /* opmapwidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opmapwidget.h; sourceTree = "<group>"; };
65B3639B121C261F003EAD18 /* trailitem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = trailitem.cpp; sourceTree = "<group>"; };
65B3639C121C261F003EAD18 /* trailitem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = trailitem.h; sourceTree = "<group>"; };
65B3639D121C261F003EAD18 /* uavitem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uavitem.cpp; sourceTree = "<group>"; };
65B3639E121C261F003EAD18 /* uavitem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uavitem.h; sourceTree = "<group>"; };
65B3639F121C261F003EAD18 /* uavmapfollowtype.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uavmapfollowtype.h; sourceTree = "<group>"; };
65B363A0121C261F003EAD18 /* uavtrailtype.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uavtrailtype.h; sourceTree = "<group>"; };
65B363A1121C261F003EAD18 /* waypointitem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = waypointitem.cpp; sourceTree = "<group>"; };
65B363A2121C261F003EAD18 /* waypointitem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = waypointitem.h; sourceTree = "<group>"; };
65B363A3121C261F003EAD18 /* src.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = src.pro; sourceTree = "<group>"; };
65B363A5121C261F003EAD18 /* qextserialport.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = qextserialport.pri; sourceTree = "<group>"; };
65B363A6121C261F003EAD18 /* qextserialport.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = qextserialport.pro; sourceTree = "<group>"; };
65B363A8121C261F003EAD18 /* posix_qextserialport.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = posix_qextserialport.cpp; sourceTree = "<group>"; };
65B363A9121C261F003EAD18 /* qextserialenumerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qextserialenumerator.h; sourceTree = "<group>"; };
65B363AA121C261F003EAD18 /* qextserialenumerator_osx.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qextserialenumerator_osx.cpp; sourceTree = "<group>"; };
65B363AB121C261F003EAD18 /* qextserialenumerator_unix.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qextserialenumerator_unix.cpp; sourceTree = "<group>"; };
65B363AC121C261F003EAD18 /* qextserialenumerator_win.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qextserialenumerator_win.cpp; sourceTree = "<group>"; };
65B363AD121C261F003EAD18 /* qextserialport.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qextserialport.cpp; sourceTree = "<group>"; };
65B363AE121C261F003EAD18 /* qextserialport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qextserialport.h; sourceTree = "<group>"; };
65B363AF121C261F003EAD18 /* qextserialport_global.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qextserialport_global.h; sourceTree = "<group>"; };
65B363B0121C261F003EAD18 /* src.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = src.pro; sourceTree = "<group>"; };
65B363B1121C261F003EAD18 /* win_qextserialport.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = win_qextserialport.cpp; sourceTree = "<group>"; };
65B363B3121C261F003EAD18 /* multitask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = multitask.h; sourceTree = "<group>"; };
65B363B4121C261F003EAD18 /* qtconcurrent.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = qtconcurrent.pri; sourceTree = "<group>"; };
65B363B5121C261F003EAD18 /* qtconcurrent.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = qtconcurrent.pro; sourceTree = "<group>"; };
65B363B6121C261F003EAD18 /* qtconcurrent_global.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qtconcurrent_global.h; sourceTree = "<group>"; };
65B363B7121C261F003EAD18 /* QtConcurrentTools */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = QtConcurrentTools; sourceTree = "<group>"; };
65B363B8121C261F003EAD18 /* runextensions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = runextensions.h; sourceTree = "<group>"; };
65B363BA121C261F003EAD18 /* COPYING */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = COPYING; sourceTree = "<group>"; };
65B363BB121C261F003EAD18 /* qwt.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = qwt.pri; sourceTree = "<group>"; };
65B363BC121C261F003EAD18 /* qwt.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = qwt.pro; sourceTree = "<group>"; };
65B363BD121C261F003EAD18 /* qwtconfig.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = qwtconfig.pri; sourceTree = "<group>"; };
65B363BF121C261F003EAD18 /* qwt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt.h; sourceTree = "<group>"; };
65B363C0121C261F003EAD18 /* qwt_abstract_scale.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_abstract_scale.cpp; sourceTree = "<group>"; };
65B363C1121C261F003EAD18 /* qwt_abstract_scale.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_abstract_scale.h; sourceTree = "<group>"; };
65B363C2121C261F003EAD18 /* qwt_abstract_scale_draw.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_abstract_scale_draw.cpp; sourceTree = "<group>"; };
65B363C3121C261F003EAD18 /* qwt_abstract_scale_draw.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_abstract_scale_draw.h; sourceTree = "<group>"; };
65B363C4121C261F003EAD18 /* qwt_abstract_slider.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_abstract_slider.cpp; sourceTree = "<group>"; };
65B363C5121C261F003EAD18 /* qwt_abstract_slider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_abstract_slider.h; sourceTree = "<group>"; };
65B363C6121C261F003EAD18 /* qwt_analog_clock.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_analog_clock.cpp; sourceTree = "<group>"; };
65B363C7121C261F003EAD18 /* qwt_analog_clock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_analog_clock.h; sourceTree = "<group>"; };
65B363C8121C261F003EAD18 /* qwt_array.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_array.h; sourceTree = "<group>"; };
65B363C9121C261F003EAD18 /* qwt_arrow_button.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_arrow_button.cpp; sourceTree = "<group>"; };
65B363CA121C261F003EAD18 /* qwt_arrow_button.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_arrow_button.h; sourceTree = "<group>"; };
65B363CB121C261F003EAD18 /* qwt_clipper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_clipper.cpp; sourceTree = "<group>"; };
65B363CC121C261F003EAD18 /* qwt_clipper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_clipper.h; sourceTree = "<group>"; };
65B363CD121C261F003EAD18 /* qwt_color_map.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_color_map.cpp; sourceTree = "<group>"; };
65B363CE121C261F003EAD18 /* qwt_color_map.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_color_map.h; sourceTree = "<group>"; };
65B363CF121C261F003EAD18 /* qwt_compass.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_compass.cpp; sourceTree = "<group>"; };
65B363D0121C261F003EAD18 /* qwt_compass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_compass.h; sourceTree = "<group>"; };
65B363D1121C261F003EAD18 /* qwt_compass_rose.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_compass_rose.cpp; sourceTree = "<group>"; };
65B363D2121C261F003EAD18 /* qwt_compass_rose.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_compass_rose.h; sourceTree = "<group>"; };
65B363D3121C261F003EAD18 /* qwt_counter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_counter.cpp; sourceTree = "<group>"; };
65B363D4121C261F003EAD18 /* qwt_counter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_counter.h; sourceTree = "<group>"; };
65B363D5121C261F003EAD18 /* qwt_curve_fitter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_curve_fitter.cpp; sourceTree = "<group>"; };
65B363D6121C261F003EAD18 /* qwt_curve_fitter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_curve_fitter.h; sourceTree = "<group>"; };
65B363D7121C261F003EAD18 /* qwt_data.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_data.cpp; sourceTree = "<group>"; };
65B363D8121C261F003EAD18 /* qwt_data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_data.h; sourceTree = "<group>"; };
65B363D9121C261F003EAD18 /* qwt_dial.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_dial.cpp; sourceTree = "<group>"; };
65B363DA121C261F003EAD18 /* qwt_dial.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_dial.h; sourceTree = "<group>"; };
65B363DB121C261F003EAD18 /* qwt_dial_needle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_dial_needle.cpp; sourceTree = "<group>"; };
65B363DC121C261F003EAD18 /* qwt_dial_needle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_dial_needle.h; sourceTree = "<group>"; };
65B363DD121C261F003EAD18 /* qwt_double_interval.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_double_interval.cpp; sourceTree = "<group>"; };
65B363DE121C261F003EAD18 /* qwt_double_interval.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_double_interval.h; sourceTree = "<group>"; };
65B363DF121C261F003EAD18 /* qwt_double_range.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_double_range.cpp; sourceTree = "<group>"; };
65B363E0121C261F003EAD18 /* qwt_double_range.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_double_range.h; sourceTree = "<group>"; };
65B363E1121C261F003EAD18 /* qwt_double_rect.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_double_rect.cpp; sourceTree = "<group>"; };
65B363E2121C261F003EAD18 /* qwt_double_rect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_double_rect.h; sourceTree = "<group>"; };
65B363E3121C261F003EAD18 /* qwt_dyngrid_layout.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_dyngrid_layout.cpp; sourceTree = "<group>"; };
65B363E4121C261F003EAD18 /* qwt_dyngrid_layout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_dyngrid_layout.h; sourceTree = "<group>"; };
65B363E5121C261F003EAD18 /* qwt_event_pattern.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_event_pattern.cpp; sourceTree = "<group>"; };
65B363E6121C261F003EAD18 /* qwt_event_pattern.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_event_pattern.h; sourceTree = "<group>"; };
65B363E7121C261F003EAD18 /* qwt_global.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_global.h; sourceTree = "<group>"; };
65B363E8121C261F003EAD18 /* qwt_interval_data.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_interval_data.cpp; sourceTree = "<group>"; };
65B363E9121C261F003EAD18 /* qwt_interval_data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_interval_data.h; sourceTree = "<group>"; };
65B363EA121C261F003EAD18 /* qwt_knob.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_knob.cpp; sourceTree = "<group>"; };
65B363EB121C261F003EAD18 /* qwt_knob.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_knob.h; sourceTree = "<group>"; };
65B363EC121C261F003EAD18 /* qwt_layout_metrics.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_layout_metrics.cpp; sourceTree = "<group>"; };
65B363ED121C261F003EAD18 /* qwt_layout_metrics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_layout_metrics.h; sourceTree = "<group>"; };
65B363EE121C261F003EAD18 /* qwt_legend.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_legend.cpp; sourceTree = "<group>"; };
65B363EF121C261F003EAD18 /* qwt_legend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_legend.h; sourceTree = "<group>"; };
65B363F0121C261F003EAD18 /* qwt_legend_item.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_legend_item.cpp; sourceTree = "<group>"; };
65B363F1121C261F003EAD18 /* qwt_legend_item.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_legend_item.h; sourceTree = "<group>"; };
65B363F2121C261F003EAD18 /* qwt_legend_itemmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_legend_itemmanager.h; sourceTree = "<group>"; };
65B363F3121C261F003EAD18 /* qwt_magnifier.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_magnifier.cpp; sourceTree = "<group>"; };
65B363F4121C261F003EAD18 /* qwt_magnifier.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_magnifier.h; sourceTree = "<group>"; };
65B363F5121C261F003EAD18 /* qwt_math.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_math.cpp; sourceTree = "<group>"; };
65B363F6121C261F003EAD18 /* qwt_math.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_math.h; sourceTree = "<group>"; };
65B363F7121C261F003EAD18 /* qwt_paint_buffer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_paint_buffer.cpp; sourceTree = "<group>"; };
65B363F8121C261F003EAD18 /* qwt_paint_buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_paint_buffer.h; sourceTree = "<group>"; };
65B363F9121C261F003EAD18 /* qwt_painter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_painter.cpp; sourceTree = "<group>"; };
65B363FA121C261F003EAD18 /* qwt_painter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_painter.h; sourceTree = "<group>"; };
65B363FB121C261F003EAD18 /* qwt_panner.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_panner.cpp; sourceTree = "<group>"; };
65B363FC121C261F003EAD18 /* qwt_panner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_panner.h; sourceTree = "<group>"; };
65B363FD121C261F003EAD18 /* qwt_picker.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_picker.cpp; sourceTree = "<group>"; };
65B363FE121C261F003EAD18 /* qwt_picker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_picker.h; sourceTree = "<group>"; };
65B363FF121C261F003EAD18 /* qwt_picker_machine.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_picker_machine.cpp; sourceTree = "<group>"; };
65B36400121C261F003EAD18 /* qwt_picker_machine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_picker_machine.h; sourceTree = "<group>"; };
65B36401121C261F003EAD18 /* qwt_plot.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_plot.cpp; sourceTree = "<group>"; };
65B36402121C261F003EAD18 /* qwt_plot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_plot.h; sourceTree = "<group>"; };
65B36403121C261F003EAD18 /* qwt_plot_axis.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_plot_axis.cpp; sourceTree = "<group>"; };
65B36404121C261F003EAD18 /* qwt_plot_canvas.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_plot_canvas.cpp; sourceTree = "<group>"; };
65B36405121C261F003EAD18 /* qwt_plot_canvas.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_plot_canvas.h; sourceTree = "<group>"; };
65B36406121C261F003EAD18 /* qwt_plot_curve.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_plot_curve.cpp; sourceTree = "<group>"; };
65B36407121C261F003EAD18 /* qwt_plot_curve.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_plot_curve.h; sourceTree = "<group>"; };
65B36408121C261F003EAD18 /* qwt_plot_dict.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_plot_dict.cpp; sourceTree = "<group>"; };
65B36409121C261F003EAD18 /* qwt_plot_dict.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_plot_dict.h; sourceTree = "<group>"; };
65B3640A121C261F003EAD18 /* qwt_plot_grid.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_plot_grid.cpp; sourceTree = "<group>"; };
65B3640B121C261F003EAD18 /* qwt_plot_grid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_plot_grid.h; sourceTree = "<group>"; };
65B3640C121C261F003EAD18 /* qwt_plot_item.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_plot_item.cpp; sourceTree = "<group>"; };
65B3640D121C261F003EAD18 /* qwt_plot_item.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_plot_item.h; sourceTree = "<group>"; };
65B3640E121C261F003EAD18 /* qwt_plot_layout.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_plot_layout.cpp; sourceTree = "<group>"; };
65B3640F121C261F003EAD18 /* qwt_plot_layout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_plot_layout.h; sourceTree = "<group>"; };
65B36410121C261F003EAD18 /* qwt_plot_magnifier.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_plot_magnifier.cpp; sourceTree = "<group>"; };
65B36411121C261F003EAD18 /* qwt_plot_magnifier.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_plot_magnifier.h; sourceTree = "<group>"; };
65B36412121C261F003EAD18 /* qwt_plot_marker.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_plot_marker.cpp; sourceTree = "<group>"; };
65B36413121C261F003EAD18 /* qwt_plot_marker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_plot_marker.h; sourceTree = "<group>"; };
65B36414121C261F003EAD18 /* qwt_plot_panner.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_plot_panner.cpp; sourceTree = "<group>"; };
65B36415121C261F003EAD18 /* qwt_plot_panner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_plot_panner.h; sourceTree = "<group>"; };
65B36416121C261F003EAD18 /* qwt_plot_picker.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_plot_picker.cpp; sourceTree = "<group>"; };
65B36417121C261F003EAD18 /* qwt_plot_picker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_plot_picker.h; sourceTree = "<group>"; };
65B36418121C261F003EAD18 /* qwt_plot_print.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_plot_print.cpp; sourceTree = "<group>"; };
65B36419121C261F003EAD18 /* qwt_plot_printfilter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_plot_printfilter.cpp; sourceTree = "<group>"; };
65B3641A121C261F003EAD18 /* qwt_plot_printfilter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_plot_printfilter.h; sourceTree = "<group>"; };
65B3641B121C261F003EAD18 /* qwt_plot_rasteritem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_plot_rasteritem.cpp; sourceTree = "<group>"; };
65B3641C121C261F003EAD18 /* qwt_plot_rasteritem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_plot_rasteritem.h; sourceTree = "<group>"; };
65B3641D121C261F003EAD18 /* qwt_plot_rescaler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_plot_rescaler.cpp; sourceTree = "<group>"; };
65B3641E121C261F003EAD18 /* qwt_plot_rescaler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_plot_rescaler.h; sourceTree = "<group>"; };
65B3641F121C261F003EAD18 /* qwt_plot_scaleitem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_plot_scaleitem.cpp; sourceTree = "<group>"; };
65B36420121C261F003EAD18 /* qwt_plot_scaleitem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_plot_scaleitem.h; sourceTree = "<group>"; };
65B36421121C261F003EAD18 /* qwt_plot_spectrogram.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_plot_spectrogram.cpp; sourceTree = "<group>"; };
65B36422121C261F003EAD18 /* qwt_plot_spectrogram.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_plot_spectrogram.h; sourceTree = "<group>"; };
65B36423121C261F003EAD18 /* qwt_plot_svgitem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_plot_svgitem.cpp; sourceTree = "<group>"; };
65B36424121C261F003EAD18 /* qwt_plot_svgitem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_plot_svgitem.h; sourceTree = "<group>"; };
65B36425121C261F003EAD18 /* qwt_plot_xml.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_plot_xml.cpp; sourceTree = "<group>"; };
65B36426121C261F003EAD18 /* qwt_plot_zoomer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_plot_zoomer.cpp; sourceTree = "<group>"; };
65B36427121C261F003EAD18 /* qwt_plot_zoomer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_plot_zoomer.h; sourceTree = "<group>"; };
65B36428121C261F003EAD18 /* qwt_polygon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_polygon.h; sourceTree = "<group>"; };
65B36429121C261F003EAD18 /* qwt_raster_data.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_raster_data.cpp; sourceTree = "<group>"; };
65B3642A121C261F003EAD18 /* qwt_raster_data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_raster_data.h; sourceTree = "<group>"; };
65B3642B121C261F003EAD18 /* qwt_round_scale_draw.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_round_scale_draw.cpp; sourceTree = "<group>"; };
65B3642C121C261F003EAD18 /* qwt_round_scale_draw.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_round_scale_draw.h; sourceTree = "<group>"; };
65B3642D121C261F003EAD18 /* qwt_scale_div.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_scale_div.cpp; sourceTree = "<group>"; };
65B3642E121C261F003EAD18 /* qwt_scale_div.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_scale_div.h; sourceTree = "<group>"; };
65B3642F121C261F003EAD18 /* qwt_scale_draw.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_scale_draw.cpp; sourceTree = "<group>"; };
65B36430121C261F003EAD18 /* qwt_scale_draw.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_scale_draw.h; sourceTree = "<group>"; };
65B36431121C261F003EAD18 /* qwt_scale_engine.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_scale_engine.cpp; sourceTree = "<group>"; };
65B36432121C261F003EAD18 /* qwt_scale_engine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_scale_engine.h; sourceTree = "<group>"; };
65B36433121C261F003EAD18 /* qwt_scale_map.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_scale_map.cpp; sourceTree = "<group>"; };
65B36434121C261F003EAD18 /* qwt_scale_map.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_scale_map.h; sourceTree = "<group>"; };
65B36435121C261F003EAD18 /* qwt_scale_widget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_scale_widget.cpp; sourceTree = "<group>"; };
65B36436121C261F003EAD18 /* qwt_scale_widget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_scale_widget.h; sourceTree = "<group>"; };
65B36437121C261F003EAD18 /* qwt_slider.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_slider.cpp; sourceTree = "<group>"; };
65B36438121C261F003EAD18 /* qwt_slider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_slider.h; sourceTree = "<group>"; };
65B36439121C261F003EAD18 /* qwt_spline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_spline.cpp; sourceTree = "<group>"; };
65B3643A121C261F003EAD18 /* qwt_spline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_spline.h; sourceTree = "<group>"; };
65B3643B121C261F003EAD18 /* qwt_symbol.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_symbol.cpp; sourceTree = "<group>"; };
65B3643C121C261F003EAD18 /* qwt_symbol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_symbol.h; sourceTree = "<group>"; };
65B3643D121C261F003EAD18 /* qwt_text.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_text.cpp; sourceTree = "<group>"; };
65B3643E121C261F003EAD18 /* qwt_text.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_text.h; sourceTree = "<group>"; };
65B3643F121C261F003EAD18 /* qwt_text_engine.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_text_engine.cpp; sourceTree = "<group>"; };
65B36440121C261F003EAD18 /* qwt_text_engine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_text_engine.h; sourceTree = "<group>"; };
65B36441121C261F003EAD18 /* qwt_text_label.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_text_label.cpp; sourceTree = "<group>"; };
65B36442121C261F003EAD18 /* qwt_text_label.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_text_label.h; sourceTree = "<group>"; };
65B36443121C261F003EAD18 /* qwt_thermo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_thermo.cpp; sourceTree = "<group>"; };
65B36444121C261F003EAD18 /* qwt_thermo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_thermo.h; sourceTree = "<group>"; };
65B36445121C261F003EAD18 /* qwt_valuelist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_valuelist.h; sourceTree = "<group>"; };
65B36446121C261F003EAD18 /* qwt_wheel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qwt_wheel.cpp; sourceTree = "<group>"; };
65B36447121C261F003EAD18 /* qwt_wheel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qwt_wheel.h; sourceTree = "<group>"; };
65B36448121C261F003EAD18 /* src.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = src.pro; sourceTree = "<group>"; };
65B3644A121C261F003EAD18 /* qymodem.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = qymodem.pri; sourceTree = "<group>"; };
65B3644B121C261F003EAD18 /* qymodem.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = qymodem.pro; sourceTree = "<group>"; };
65B3644D121C261F003EAD18 /* qymodem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qymodem.cpp; sourceTree = "<group>"; };
65B3644E121C261F003EAD18 /* qymodem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qymodem.h; sourceTree = "<group>"; };
65B3644F121C261F003EAD18 /* qymodem_tx.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qymodem_tx.cpp; sourceTree = "<group>"; };
65B36450121C261F003EAD18 /* qymodem_tx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qymodem_tx.h; sourceTree = "<group>"; };
65B36451121C261F003EAD18 /* qymodemfilestream.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qymodemfilestream.cpp; sourceTree = "<group>"; };
65B36452121C261F003EAD18 /* qymodemsend.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qymodemsend.cpp; sourceTree = "<group>"; };
65B36453121C261F003EAD18 /* qymodemsend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qymodemsend.h; sourceTree = "<group>"; };
65B36454121C261F003EAD18 /* src.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = src.pro; sourceTree = "<group>"; };
65B36456121C261F003EAD18 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = "<group>"; };
65B36457121C261F003EAD18 /* uavobjectgenerator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uavobjectgenerator.cpp; sourceTree = "<group>"; };
65B36458121C261F003EAD18 /* uavobjectgenerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uavobjectgenerator.h; sourceTree = "<group>"; };
65B36459121C261F003EAD18 /* uavobjectparser.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uavobjectparser.cpp; sourceTree = "<group>"; };
65B3645A121C261F003EAD18 /* uavobjectparser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uavobjectparser.h; sourceTree = "<group>"; };
65B3645B121C261F003EAD18 /* uavobjgenerator.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = uavobjgenerator.pro; sourceTree = "<group>"; };
65B3645D121C261F003EAD18 /* abstractprocess.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = abstractprocess.h; sourceTree = "<group>"; };
65B3645E121C261F003EAD18 /* abstractprocess_win.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = abstractprocess_win.cpp; sourceTree = "<group>"; };
65B3645F121C261F003EAD18 /* basevalidatinglineedit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = basevalidatinglineedit.cpp; sourceTree = "<group>"; };
65B36460121C261F003EAD18 /* basevalidatinglineedit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = basevalidatinglineedit.h; sourceTree = "<group>"; };
65B36461121C261F003EAD18 /* checkablemessagebox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = checkablemessagebox.cpp; sourceTree = "<group>"; };
65B36462121C261F003EAD18 /* checkablemessagebox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = checkablemessagebox.h; sourceTree = "<group>"; };
65B36463121C261F003EAD18 /* checkablemessagebox.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = checkablemessagebox.ui; sourceTree = "<group>"; };
65B36464121C261F003EAD18 /* classnamevalidatinglineedit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = classnamevalidatinglineedit.cpp; sourceTree = "<group>"; };
65B36465121C261F003EAD18 /* classnamevalidatinglineedit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = classnamevalidatinglineedit.h; sourceTree = "<group>"; };
65B36466121C261F003EAD18 /* codegeneration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = codegeneration.cpp; sourceTree = "<group>"; };
65B36467121C261F003EAD18 /* codegeneration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = codegeneration.h; sourceTree = "<group>"; };
65B36468121C261F003EAD18 /* consoleprocess.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = consoleprocess.cpp; sourceTree = "<group>"; };
65B36469121C261F003EAD18 /* consoleprocess.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = consoleprocess.h; sourceTree = "<group>"; };
65B3646A121C261F003EAD18 /* consoleprocess_unix.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = consoleprocess_unix.cpp; sourceTree = "<group>"; };
65B3646B121C261F003EAD18 /* consoleprocess_win.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = consoleprocess_win.cpp; sourceTree = "<group>"; };
65B3646C121C261F003EAD18 /* detailsbutton.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = detailsbutton.cpp; sourceTree = "<group>"; };
65B3646D121C261F003EAD18 /* detailsbutton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = detailsbutton.h; sourceTree = "<group>"; };
65B3646E121C261F003EAD18 /* detailswidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = detailswidget.cpp; sourceTree = "<group>"; };
65B3646F121C261F003EAD18 /* detailswidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = detailswidget.h; sourceTree = "<group>"; };
65B36470121C261F003EAD18 /* fancylineedit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = fancylineedit.cpp; sourceTree = "<group>"; };
65B36471121C261F003EAD18 /* fancylineedit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fancylineedit.h; sourceTree = "<group>"; };
65B36472121C261F003EAD18 /* fancymainwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = fancymainwindow.cpp; sourceTree = "<group>"; };
65B36473121C261F003EAD18 /* fancymainwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fancymainwindow.h; sourceTree = "<group>"; };
65B36474121C261F003EAD18 /* filenamevalidatinglineedit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = filenamevalidatinglineedit.cpp; sourceTree = "<group>"; };
65B36475121C261F003EAD18 /* filenamevalidatinglineedit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = filenamevalidatinglineedit.h; sourceTree = "<group>"; };
65B36476121C261F003EAD18 /* filesearch.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = filesearch.cpp; sourceTree = "<group>"; };
65B36477121C261F003EAD18 /* filesearch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = filesearch.h; sourceTree = "<group>"; };
65B36478121C261F003EAD18 /* filewizarddialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = filewizarddialog.cpp; sourceTree = "<group>"; };
65B36479121C261F003EAD18 /* filewizarddialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = filewizarddialog.h; sourceTree = "<group>"; };
65B3647A121C261F003EAD18 /* filewizardpage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = filewizardpage.cpp; sourceTree = "<group>"; };
65B3647B121C261F003EAD18 /* filewizardpage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = filewizardpage.h; sourceTree = "<group>"; };
65B3647C121C261F003EAD18 /* filewizardpage.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = filewizardpage.ui; sourceTree = "<group>"; };
65B3647E121C261F003EAD18 /* removesubmitfield.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = removesubmitfield.png; sourceTree = "<group>"; };
65B3647F121C261F003EAD18 /* iwelcomepage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = iwelcomepage.cpp; sourceTree = "<group>"; };
65B36480121C261F003EAD18 /* iwelcomepage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = iwelcomepage.h; sourceTree = "<group>"; };
65B36481121C261F003EAD18 /* linecolumnlabel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = linecolumnlabel.cpp; sourceTree = "<group>"; };
65B36482121C261F003EAD18 /* linecolumnlabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = linecolumnlabel.h; sourceTree = "<group>"; };
65B36483121C261F003EAD18 /* listutils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = listutils.h; sourceTree = "<group>"; };
65B36484121C261F003EAD18 /* newclasswidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = newclasswidget.cpp; sourceTree = "<group>"; };
65B36485121C261F003EAD18 /* newclasswidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = newclasswidget.h; sourceTree = "<group>"; };
65B36486121C261F003EAD18 /* newclasswidget.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = newclasswidget.ui; sourceTree = "<group>"; };
65B36487121C261F003EAD18 /* parameteraction.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = parameteraction.cpp; sourceTree = "<group>"; };
65B36488121C261F003EAD18 /* parameteraction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = parameteraction.h; sourceTree = "<group>"; };
65B36489121C261F003EAD18 /* pathchooser.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pathchooser.cpp; sourceTree = "<group>"; };
65B3648A121C261F003EAD18 /* pathchooser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pathchooser.h; sourceTree = "<group>"; };
65B3648B121C261F003EAD18 /* pathlisteditor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pathlisteditor.cpp; sourceTree = "<group>"; };
65B3648C121C261F003EAD18 /* pathlisteditor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pathlisteditor.h; sourceTree = "<group>"; };
65B3648D121C261F003EAD18 /* projectintropage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = projectintropage.cpp; sourceTree = "<group>"; };
65B3648E121C261F003EAD18 /* projectintropage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = projectintropage.h; sourceTree = "<group>"; };
65B3648F121C261F003EAD18 /* projectintropage.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = projectintropage.ui; sourceTree = "<group>"; };
65B36490121C261F003EAD18 /* projectnamevalidatinglineedit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = projectnamevalidatinglineedit.cpp; sourceTree = "<group>"; };
65B36491121C261F003EAD18 /* projectnamevalidatinglineedit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = projectnamevalidatinglineedit.h; sourceTree = "<group>"; };
65B36492121C261F003EAD18 /* qtcassert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qtcassert.h; sourceTree = "<group>"; };
65B36493121C261F003EAD18 /* qtcolorbutton.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qtcolorbutton.cpp; sourceTree = "<group>"; };
65B36494121C261F003EAD18 /* qtcolorbutton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qtcolorbutton.h; sourceTree = "<group>"; };
65B36495121C261F003EAD18 /* reloadpromptutils.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = reloadpromptutils.cpp; sourceTree = "<group>"; };
65B36496121C261F003EAD18 /* reloadpromptutils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = reloadpromptutils.h; sourceTree = "<group>"; };
65B36497121C261F003EAD18 /* savedaction.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = savedaction.cpp; sourceTree = "<group>"; };
65B36498121C261F003EAD18 /* savedaction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = savedaction.h; sourceTree = "<group>"; };
65B36499121C261F003EAD18 /* settingsutils.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = settingsutils.cpp; sourceTree = "<group>"; };
65B3649A121C261F003EAD18 /* settingsutils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = settingsutils.h; sourceTree = "<group>"; };
65B3649B121C261F003EAD18 /* styledbar.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = styledbar.cpp; sourceTree = "<group>"; };
65B3649C121C261F003EAD18 /* styledbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = styledbar.h; sourceTree = "<group>"; };
65B3649D121C261F003EAD18 /* stylehelper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = stylehelper.cpp; sourceTree = "<group>"; };
65B3649E121C261F003EAD18 /* stylehelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stylehelper.h; sourceTree = "<group>"; };
65B3649F121C261F003EAD18 /* submiteditorwidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = submiteditorwidget.cpp; sourceTree = "<group>"; };
65B364A0121C261F003EAD18 /* submiteditorwidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = submiteditorwidget.h; sourceTree = "<group>"; };
65B364A1121C261F003EAD18 /* submiteditorwidget.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = submiteditorwidget.ui; sourceTree = "<group>"; };
65B364A2121C261F003EAD18 /* submitfieldwidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = submitfieldwidget.cpp; sourceTree = "<group>"; };
65B364A3121C261F003EAD18 /* submitfieldwidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = submitfieldwidget.h; sourceTree = "<group>"; };
65B364A4121C261F003EAD18 /* synchronousprocess.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = synchronousprocess.cpp; sourceTree = "<group>"; };
65B364A5121C261F003EAD18 /* synchronousprocess.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = synchronousprocess.h; sourceTree = "<group>"; };
65B364A6121C261F003EAD18 /* treewidgetcolumnstretcher.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = treewidgetcolumnstretcher.cpp; sourceTree = "<group>"; };
65B364A7121C261F003EAD18 /* treewidgetcolumnstretcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = treewidgetcolumnstretcher.h; sourceTree = "<group>"; };
65B364A8121C261F003EAD18 /* uncommentselection.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uncommentselection.cpp; sourceTree = "<group>"; };
65B364A9121C261F003EAD18 /* uncommentselection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uncommentselection.h; sourceTree = "<group>"; };
65B364AA121C261F003EAD18 /* utils.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = utils.pri; sourceTree = "<group>"; };
65B364AB121C261F003EAD18 /* utils.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = utils.pro; sourceTree = "<group>"; };
65B364AC121C261F003EAD18 /* utils.qrc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = utils.qrc; sourceTree = "<group>"; };
65B364AD121C261F003EAD18 /* utils_global.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utils_global.h; sourceTree = "<group>"; };
65B364AE121C261F003EAD18 /* welcomemodetreewidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = welcomemodetreewidget.cpp; sourceTree = "<group>"; };
65B364AF121C261F003EAD18 /* welcomemodetreewidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = welcomemodetreewidget.h; sourceTree = "<group>"; };
65B364B0121C261F003EAD18 /* winutils.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = winutils.cpp; sourceTree = "<group>"; };
65B364B1121C261F003EAD18 /* winutils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = winutils.h; sourceTree = "<group>"; };
65B364B2121C261F003EAD18 /* openpilotgcslibrary.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = openpilotgcslibrary.pri; sourceTree = "<group>"; };
65B364B3121C261F003EAD18 /* openpilotgcsplugin.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = openpilotgcsplugin.pri; sourceTree = "<group>"; };
65B364B6121C261F003EAD18 /* airframe.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = airframe.ui; sourceTree = "<group>"; };
65B364B7121C261F003EAD18 /* Config.pluginspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Config.pluginspec; sourceTree = "<group>"; };
65B364B8121C261F003EAD18 /* config.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = config.pro; sourceTree = "<group>"; };
65B364B9121C261F003EAD18 /* configfactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = configfactory.h; sourceTree = "<group>"; };
65B364BA121C261F003EAD18 /* configgadget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = configgadget.cpp; sourceTree = "<group>"; };
65B364BB121C261F003EAD18 /* configgadget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = configgadget.h; sourceTree = "<group>"; };
65B364BC121C261F003EAD18 /* configgadget.qrc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = configgadget.qrc; sourceTree = "<group>"; };
65B364BD121C261F003EAD18 /* configgadgetconfiguration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = configgadgetconfiguration.cpp; sourceTree = "<group>"; };
65B364BE121C261F003EAD18 /* configgadgetconfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = configgadgetconfiguration.h; sourceTree = "<group>"; };
65B364BF121C261F003EAD18 /* configgadgetfactory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = configgadgetfactory.cpp; sourceTree = "<group>"; };
65B364C0121C261F003EAD18 /* configgadgetfactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = configgadgetfactory.h; sourceTree = "<group>"; };
65B364C1121C261F003EAD18 /* configgadgetoptionspage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = configgadgetoptionspage.cpp; sourceTree = "<group>"; };
65B364C2121C261F003EAD18 /* configgadgetoptionspage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = configgadgetoptionspage.h; sourceTree = "<group>"; };
65B364C3121C261F003EAD18 /* configgadgetwidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = configgadgetwidget.cpp; sourceTree = "<group>"; };
65B364C4121C261F003EAD18 /* configgadgetwidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = configgadgetwidget.h; sourceTree = "<group>"; };
65B364C5121C261F003EAD18 /* configplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = configplugin.cpp; sourceTree = "<group>"; };
65B364C6121C261F003EAD18 /* configplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = configplugin.h; sourceTree = "<group>"; };
65B364C7121C261F003EAD18 /* fancytabwidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = fancytabwidget.cpp; sourceTree = "<group>"; };
65B364C8121C261F003EAD18 /* fancytabwidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fancytabwidget.h; sourceTree = "<group>"; };
65B364CA121C261F003EAD18 /* Airframe.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Airframe.png; sourceTree = "<group>"; };
65B364CB121C261F003EAD18 /* Servo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Servo.png; sourceTree = "<group>"; };
65B364CC121C261F003EAD18 /* XBee.svg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = XBee.svg; sourceTree = "<group>"; };
65B364CD121C261F003EAD18 /* settingswidget.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = settingswidget.ui; sourceTree = "<group>"; };
65B364CE121C261F003EAD18 /* telemetry.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = telemetry.ui; sourceTree = "<group>"; };
65B364D0121C261F003EAD18 /* consolegadget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = consolegadget.cpp; sourceTree = "<group>"; };
65B364D1121C261F003EAD18 /* consolegadget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = consolegadget.h; sourceTree = "<group>"; };
65B364D2121C261F003EAD18 /* ConsoleGadget.pluginspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ConsoleGadget.pluginspec; sourceTree = "<group>"; };
65B364D3121C261F003EAD18 /* consolegadget.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = consolegadget.pro; sourceTree = "<group>"; };
65B364D4121C261F003EAD18 /* consolegadgetfactory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = consolegadgetfactory.cpp; sourceTree = "<group>"; };
65B364D5121C261F003EAD18 /* consolegadgetfactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = consolegadgetfactory.h; sourceTree = "<group>"; };
65B364D6121C261F003EAD18 /* consolegadgetwidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = consolegadgetwidget.cpp; sourceTree = "<group>"; };
65B364D7121C261F003EAD18 /* consolegadgetwidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = consolegadgetwidget.h; sourceTree = "<group>"; };
65B364D8121C261F003EAD18 /* consoleplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = consoleplugin.cpp; sourceTree = "<group>"; };
65B364D9121C261F003EAD18 /* consoleplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = consoleplugin.h; sourceTree = "<group>"; };
65B364DA121C261F003EAD18 /* texteditloggerengine.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = texteditloggerengine.cpp; sourceTree = "<group>"; };
65B364DB121C261F003EAD18 /* texteditloggerengine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = texteditloggerengine.h; sourceTree = "<group>"; };
65B364DE121C261F003EAD18 /* actioncontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = actioncontainer.cpp; sourceTree = "<group>"; };
65B364DF121C261F003EAD18 /* actioncontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = actioncontainer.h; sourceTree = "<group>"; };
65B364E0121C261F003EAD18 /* actioncontainer_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = actioncontainer_p.h; sourceTree = "<group>"; };
65B364E1121C261F003EAD18 /* actionmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = actionmanager.cpp; sourceTree = "<group>"; };
65B364E2121C261F003EAD18 /* actionmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = actionmanager.h; sourceTree = "<group>"; };
65B364E3121C261F003EAD18 /* actionmanager_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = actionmanager_p.h; sourceTree = "<group>"; };
65B364E4121C261F003EAD18 /* command.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = command.cpp; sourceTree = "<group>"; };
65B364E5121C261F003EAD18 /* command.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = command.h; sourceTree = "<group>"; };
65B364E6121C261F003EAD18 /* command_p.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = command_p.h; sourceTree = "<group>"; };
65B364E7121C261F003EAD18 /* commandsfile.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = commandsfile.cpp; sourceTree = "<group>"; };
65B364E8121C261F003EAD18 /* commandsfile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = commandsfile.h; sourceTree = "<group>"; };
65B364E9121C261F003EAD18 /* basemode.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = basemode.cpp; sourceTree = "<group>"; };
65B364EA121C261F003EAD18 /* basemode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = basemode.h; sourceTree = "<group>"; };
65B364EB121C261F003EAD18 /* baseview.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = baseview.cpp; sourceTree = "<group>"; };
65B364EC121C261F003EAD18 /* baseview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = baseview.h; sourceTree = "<group>"; };
65B364ED121C261F003EAD18 /* connectionmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = connectionmanager.cpp; sourceTree = "<group>"; };
65B364EE121C261F003EAD18 /* connectionmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = connectionmanager.h; sourceTree = "<group>"; };
65B364EF121C261F003EAD18 /* Core.pluginspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Core.pluginspec; sourceTree = "<group>"; };
65B364F0121C261F003EAD18 /* core.qrc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = core.qrc; sourceTree = "<group>"; };
65B364F1121C261F003EAD18 /* core_global.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = core_global.h; sourceTree = "<group>"; };
65B364F2121C261F003EAD18 /* coreconstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = coreconstants.h; sourceTree = "<group>"; };
65B364F3121C261F003EAD18 /* coreimpl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = coreimpl.cpp; sourceTree = "<group>"; };
65B364F4121C261F003EAD18 /* coreimpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = coreimpl.h; sourceTree = "<group>"; };
65B364F5121C261F003EAD18 /* coreplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = coreplugin.cpp; sourceTree = "<group>"; };
65B364F6121C261F003EAD18 /* coreplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = coreplugin.h; sourceTree = "<group>"; };
65B364F7121C261F003EAD18 /* coreplugin.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = coreplugin.pri; sourceTree = "<group>"; };
65B364F8121C261F003EAD18 /* coreplugin.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = coreplugin.pro; sourceTree = "<group>"; };
65B364F9121C261F003EAD18 /* coreplugin_dependencies.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = coreplugin_dependencies.pri; sourceTree = "<group>"; };
65B364FB121C261F003EAD18 /* ioptionspage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ioptionspage.cpp; sourceTree = "<group>"; };
65B364FC121C261F003EAD18 /* ioptionspage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ioptionspage.h; sourceTree = "<group>"; };
65B364FD121C261F003EAD18 /* iwizard.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = iwizard.cpp; sourceTree = "<group>"; };
65B364FE121C261F003EAD18 /* iwizard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = iwizard.h; sourceTree = "<group>"; };
65B364FF121C261F003EAD18 /* settingsdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = settingsdialog.cpp; sourceTree = "<group>"; };
65B36500121C261F003EAD18 /* settingsdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = settingsdialog.h; sourceTree = "<group>"; };
65B36501121C261F003EAD18 /* settingsdialog.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = settingsdialog.ui; sourceTree = "<group>"; };
65B36502121C261F003EAD18 /* shortcutsettings.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = shortcutsettings.cpp; sourceTree = "<group>"; };
65B36503121C261F003EAD18 /* shortcutsettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shortcutsettings.h; sourceTree = "<group>"; };
65B36504121C261F003EAD18 /* shortcutsettings.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = shortcutsettings.ui; sourceTree = "<group>"; };
65B36505121C261F003EAD18 /* eventfilteringmainwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = eventfilteringmainwindow.cpp; sourceTree = "<group>"; };
65B36506121C261F003EAD18 /* eventfilteringmainwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = eventfilteringmainwindow.h; sourceTree = "<group>"; };
65B36507121C261F003EAD18 /* fancyactionbar.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = fancyactionbar.cpp; sourceTree = "<group>"; };
65B36508121C261F003EAD18 /* fancyactionbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fancyactionbar.h; sourceTree = "<group>"; };
65B36509121C261F003EAD18 /* fancyactionbar.qrc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = fancyactionbar.qrc; sourceTree = "<group>"; };
65B3650A121C261F003EAD18 /* fancytabwidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = fancytabwidget.cpp; sourceTree = "<group>"; };
65B3650B121C261F003EAD18 /* fancytabwidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fancytabwidget.h; sourceTree = "<group>"; };
65B3650C121C261F003EAD18 /* fileiconprovider.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = fileiconprovider.cpp; sourceTree = "<group>"; };
65B3650D121C261F003EAD18 /* fileiconprovider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fileiconprovider.h; sourceTree = "<group>"; };
65B3650E121C261F003EAD18 /* generalsettings.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = generalsettings.cpp; sourceTree = "<group>"; };
65B3650F121C261F003EAD18 /* generalsettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = generalsettings.h; sourceTree = "<group>"; };
65B36510121C261F003EAD18 /* generalsettings.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = generalsettings.ui; sourceTree = "<group>"; };
65B36511121C261F003EAD18 /* iconnection.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = iconnection.cpp; sourceTree = "<group>"; };
65B36512121C261F003EAD18 /* iconnection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = iconnection.h; sourceTree = "<group>"; };
65B36513121C261F003EAD18 /* icontext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = icontext.h; sourceTree = "<group>"; };
65B36514121C261F003EAD18 /* icore.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = icore.cpp; sourceTree = "<group>"; };
65B36515121C261F003EAD18 /* icore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = icore.h; sourceTree = "<group>"; };
65B36516121C261F003EAD18 /* icorelistener.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = icorelistener.h; sourceTree = "<group>"; };
65B36518121C261F003EAD18 /* clean_pane_small.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = clean_pane_small.png; sourceTree = "<group>"; };
65B36519121C261F003EAD18 /* clear.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = clear.png; sourceTree = "<group>"; };
65B3651A121C261F003EAD18 /* closebutton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = closebutton.png; sourceTree = "<group>"; };
65B3651B121C261F003EAD18 /* darkclosebutton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = darkclosebutton.png; sourceTree = "<group>"; };
65B3651C121C261F003EAD18 /* dir.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = dir.png; sourceTree = "<group>"; };
65B3651D121C261F003EAD18 /* editcopy.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = editcopy.png; sourceTree = "<group>"; };
65B3651E121C261F003EAD18 /* editcut.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = editcut.png; sourceTree = "<group>"; };
65B3651F121C261F003EAD18 /* editpaste.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = editpaste.png; sourceTree = "<group>"; };
65B36520121C261F003EAD18 /* empty14.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = empty14.png; sourceTree = "<group>"; };
65B36521121C261F003EAD18 /* exiticon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = exiticon.png; sourceTree = "<group>"; };
65B36522121C261F003EAD18 /* extension.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = extension.png; sourceTree = "<group>"; };
65B36523121C261F003EAD18 /* fancytoolbutton.svg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = fancytoolbutton.svg; sourceTree = "<group>"; };
65B36524121C261F003EAD18 /* filenew.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = filenew.png; sourceTree = "<group>"; };
65B36525121C261F003EAD18 /* fileopen.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = fileopen.png; sourceTree = "<group>"; };
65B36526121C261F003EAD18 /* filesave.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = filesave.png; sourceTree = "<group>"; };
65B36527121C261F003EAD18 /* find.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = find.png; sourceTree = "<group>"; };
65B36528121C261F003EAD18 /* findnext.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = findnext.png; sourceTree = "<group>"; };
65B36529121C261F003EAD18 /* helpicon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = helpicon.png; sourceTree = "<group>"; };
65B3652A121C261F003EAD18 /* inputfield.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = inputfield.png; sourceTree = "<group>"; };
65B3652B121C261F003EAD18 /* inputfield_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = inputfield_disabled.png; sourceTree = "<group>"; };
65B3652C121C261F003EAD18 /* linkicon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = linkicon.png; sourceTree = "<group>"; };
65B3652D121C261F003EAD18 /* locked.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = locked.png; sourceTree = "<group>"; };
65B3652E121C261F003EAD18 /* magnifier.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = magnifier.png; sourceTree = "<group>"; };
65B3652F121C261F003EAD18 /* minus.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = minus.png; sourceTree = "<group>"; };
65B36530121C261F003EAD18 /* mode_Debug.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = mode_Debug.png; sourceTree = "<group>"; };
65B36531121C261F003EAD18 /* mode_Edit.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = mode_Edit.png; sourceTree = "<group>"; };
65B36532121C261F003EAD18 /* mode_Output.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = mode_Output.png; sourceTree = "<group>"; };
65B36533121C261F003EAD18 /* mode_Project.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = mode_Project.png; sourceTree = "<group>"; };
65B36534121C261F003EAD18 /* mode_Reference.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = mode_Reference.png; sourceTree = "<group>"; };
65B36535121C261F003EAD18 /* next.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = next.png; sourceTree = "<group>"; };
65B36536121C261F003EAD18 /* openpilot_logo_128.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = openpilot_logo_128.png; sourceTree = "<group>"; };
65B36537121C261F003EAD18 /* openpilot_logo_256.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = openpilot_logo_256.png; sourceTree = "<group>"; };
65B36538121C261F003EAD18 /* openpilot_logo_32.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = openpilot_logo_32.png; sourceTree = "<group>"; };
65B36539121C261F003EAD18 /* openpilot_logo_64.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = openpilot_logo_64.png; sourceTree = "<group>"; };
65B3653A121C261F003EAD18 /* openpiloticon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = openpiloticon.png; sourceTree = "<group>"; };
65B3653B121C261F003EAD18 /* optionsicon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = optionsicon.png; sourceTree = "<group>"; };
65B3653C121C261F003EAD18 /* panel_button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = panel_button.png; sourceTree = "<group>"; };
65B3653D121C261F003EAD18 /* panel_button_checked.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = panel_button_checked.png; sourceTree = "<group>"; };
65B3653E121C261F003EAD18 /* panel_button_checked_hover.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = panel_button_checked_hover.png; sourceTree = "<group>"; };
65B3653F121C261F003EAD18 /* panel_button_hover.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = panel_button_hover.png; sourceTree = "<group>"; };
65B36540121C261F003EAD18 /* panel_button_pressed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = panel_button_pressed.png; sourceTree = "<group>"; };
65B36541121C261F003EAD18 /* pluginicon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = pluginicon.png; sourceTree = "<group>"; };
65B36542121C261F003EAD18 /* plus.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = plus.png; sourceTree = "<group>"; };
65B36543121C261F003EAD18 /* prev.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = prev.png; sourceTree = "<group>"; };
65B36544121C261F003EAD18 /* pushbutton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = pushbutton.png; sourceTree = "<group>"; };
65B36545121C261F003EAD18 /* pushbutton_hover.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = pushbutton_hover.png; sourceTree = "<group>"; };
65B36546121C261F003EAD18 /* pushbutton_pressed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = pushbutton_pressed.png; sourceTree = "<group>"; };
65B36547121C261F003EAD18 /* qtcreator_logo_32.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = qtcreator_logo_32.png; sourceTree = "<group>"; };
65B36548121C261F003EAD18 /* qtwatermark.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = qtwatermark.png; sourceTree = "<group>"; };
65B36549121C261F003EAD18 /* redo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = redo.png; sourceTree = "<group>"; };
65B3654A121C261F003EAD18 /* replace.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = replace.png; sourceTree = "<group>"; };
65B3654B121C261F003EAD18 /* reset.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = reset.png; sourceTree = "<group>"; };
65B3654C121C261F003EAD18 /* sidebaricon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sidebaricon.png; sourceTree = "<group>"; };
65B3654D121C261F003EAD18 /* splitbutton_horizontal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = splitbutton_horizontal.png; sourceTree = "<group>"; };
65B3654E121C261F003EAD18 /* statusbar.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = statusbar.png; sourceTree = "<group>"; };
65B3654F121C261F003EAD18 /* undo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = undo.png; sourceTree = "<group>"; };
65B36550121C261F003EAD18 /* unknownfile.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = unknownfile.png; sourceTree = "<group>"; };
65B36551121C261F003EAD18 /* unlocked.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = unlocked.png; sourceTree = "<group>"; };
65B36552121C261F003EAD18 /* imode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = imode.h; sourceTree = "<group>"; };
65B36553121C261F003EAD18 /* ioutputpane.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ioutputpane.h; sourceTree = "<group>"; };
65B36554121C261F003EAD18 /* iuavgadget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = iuavgadget.cpp; sourceTree = "<group>"; };
65B36555121C261F003EAD18 /* iuavgadget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = iuavgadget.h; sourceTree = "<group>"; };
65B36556121C261F003EAD18 /* iuavgadgetconfiguration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = iuavgadgetconfiguration.cpp; sourceTree = "<group>"; };
65B36557121C261F003EAD18 /* iuavgadgetconfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = iuavgadgetconfiguration.h; sourceTree = "<group>"; };
65B36558121C261F003EAD18 /* iuavgadgetfactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = iuavgadgetfactory.h; sourceTree = "<group>"; };
65B36559121C261F003EAD18 /* iversioncontrol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = iversioncontrol.h; sourceTree = "<group>"; };
65B3655A121C261F003EAD18 /* iview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = iview.h; sourceTree = "<group>"; };
65B3655B121C261F003EAD18 /* mainwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mainwindow.cpp; sourceTree = "<group>"; };
65B3655C121C261F003EAD18 /* mainwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mainwindow.h; sourceTree = "<group>"; };
65B3655D121C261F003EAD18 /* manhattanstyle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = manhattanstyle.cpp; sourceTree = "<group>"; };
65B3655E121C261F003EAD18 /* manhattanstyle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = manhattanstyle.h; sourceTree = "<group>"; };
65B3655F121C261F003EAD18 /* messagemanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = messagemanager.cpp; sourceTree = "<group>"; };
65B36560121C261F003EAD18 /* messagemanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = messagemanager.h; sourceTree = "<group>"; };
65B36561121C261F003EAD18 /* messageoutputwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = messageoutputwindow.cpp; sourceTree = "<group>"; };
65B36562121C261F003EAD18 /* messageoutputwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = messageoutputwindow.h; sourceTree = "<group>"; };
65B36563121C261F003EAD18 /* mimedatabase.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mimedatabase.cpp; sourceTree = "<group>"; };
65B36564121C261F003EAD18 /* mimedatabase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mimedatabase.h; sourceTree = "<group>"; };
65B36565121C261F003EAD18 /* minisplitter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = minisplitter.cpp; sourceTree = "<group>"; };
65B36566121C261F003EAD18 /* minisplitter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = minisplitter.h; sourceTree = "<group>"; };
65B36567121C261F003EAD18 /* modemanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = modemanager.cpp; sourceTree = "<group>"; };
65B36568121C261F003EAD18 /* modemanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = modemanager.h; sourceTree = "<group>"; };
65B36569121C261F003EAD18 /* outputpane.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = outputpane.h; sourceTree = "<group>"; };
65B3656A121C261F003EAD18 /* plugindialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = plugindialog.cpp; sourceTree = "<group>"; };
65B3656B121C261F003EAD18 /* plugindialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = plugindialog.h; sourceTree = "<group>"; };
65B3656C121C261F003EAD18 /* rightpane.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rightpane.cpp; sourceTree = "<group>"; };
65B3656D121C261F003EAD18 /* rightpane.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rightpane.h; sourceTree = "<group>"; };
65B3656E121C261F003EAD18 /* settingsdatabase.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = settingsdatabase.cpp; sourceTree = "<group>"; };
65B3656F121C261F003EAD18 /* settingsdatabase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = settingsdatabase.h; sourceTree = "<group>"; };
65B36570121C261F003EAD18 /* sidebar.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sidebar.cpp; sourceTree = "<group>"; };
65B36571121C261F003EAD18 /* sidebar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sidebar.h; sourceTree = "<group>"; };
65B36572121C261F003EAD18 /* styleanimator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = styleanimator.cpp; sourceTree = "<group>"; };
65B36573121C261F003EAD18 /* styleanimator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = styleanimator.h; sourceTree = "<group>"; };
65B36574121C261F003EAD18 /* tabpositionindicator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tabpositionindicator.cpp; sourceTree = "<group>"; };
65B36575121C261F003EAD18 /* tabpositionindicator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tabpositionindicator.h; sourceTree = "<group>"; };
65B36576121C261F003EAD18 /* threadmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = threadmanager.cpp; sourceTree = "<group>"; };
65B36577121C261F003EAD18 /* threadmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = threadmanager.h; sourceTree = "<group>"; };
65B36578121C261F003EAD18 /* uavgadgetdecorator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uavgadgetdecorator.cpp; sourceTree = "<group>"; };
65B36579121C261F003EAD18 /* uavgadgetdecorator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uavgadgetdecorator.h; sourceTree = "<group>"; };
65B3657A121C261F003EAD18 /* uavgadgetinstancemanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uavgadgetinstancemanager.cpp; sourceTree = "<group>"; };
65B3657B121C261F003EAD18 /* uavgadgetinstancemanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uavgadgetinstancemanager.h; sourceTree = "<group>"; };
65B3657D121C261F003EAD18 /* uavgadgetmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uavgadgetmanager.cpp; sourceTree = "<group>"; };
65B3657E121C261F003EAD18 /* uavgadgetmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uavgadgetmanager.h; sourceTree = "<group>"; };
65B3657F121C261F003EAD18 /* uavgadgetview.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uavgadgetview.cpp; sourceTree = "<group>"; };
65B36580121C261F003EAD18 /* uavgadgetview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uavgadgetview.h; sourceTree = "<group>"; };
65B36581121C261F003EAD18 /* uavgadgetmode.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uavgadgetmode.cpp; sourceTree = "<group>"; };
65B36582121C261F003EAD18 /* uavgadgetmode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uavgadgetmode.h; sourceTree = "<group>"; };
65B36583121C261F003EAD18 /* uavgadgetoptionspage.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = uavgadgetoptionspage.ui; sourceTree = "<group>"; };
65B36584121C261F003EAD18 /* uavgadgetoptionspagedecorator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uavgadgetoptionspagedecorator.cpp; sourceTree = "<group>"; };
65B36585121C261F003EAD18 /* uavgadgetoptionspagedecorator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uavgadgetoptionspagedecorator.h; sourceTree = "<group>"; };
65B36586121C261F003EAD18 /* uniqueidmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uniqueidmanager.cpp; sourceTree = "<group>"; };
65B36587121C261F003EAD18 /* uniqueidmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uniqueidmanager.h; sourceTree = "<group>"; };
65B36588121C261F003EAD18 /* variablemanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = variablemanager.cpp; sourceTree = "<group>"; };
65B36589121C261F003EAD18 /* variablemanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = variablemanager.h; sourceTree = "<group>"; };
65B3658A121C261F003EAD18 /* versiondialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = versiondialog.cpp; sourceTree = "<group>"; };
65B3658B121C261F003EAD18 /* versiondialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = versiondialog.h; sourceTree = "<group>"; };
65B3658C121C261F003EAD18 /* viewmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = viewmanager.cpp; sourceTree = "<group>"; };
65B3658D121C261F003EAD18 /* viewmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = viewmanager.h; sourceTree = "<group>"; };
65B3658E121C261F003EAD18 /* workspacesettings.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = workspacesettings.cpp; sourceTree = "<group>"; };
65B3658F121C261F003EAD18 /* workspacesettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = workspacesettings.h; sourceTree = "<group>"; };
65B36590121C261F003EAD18 /* workspacesettings.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = workspacesettings.ui; sourceTree = "<group>"; };
65B36592121C261F003EAD18 /* dial.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = dial.pro; sourceTree = "<group>"; };
65B36593121C261F003EAD18 /* dial.qrc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = dial.qrc; sourceTree = "<group>"; };
65B36594121C261F003EAD18 /* dial_dependencies.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = dial_dependencies.pri; sourceTree = "<group>"; };
65B36595121C261F003EAD18 /* dialgadget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dialgadget.cpp; sourceTree = "<group>"; };
65B36596121C261F003EAD18 /* dialgadget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dialgadget.h; sourceTree = "<group>"; };
65B36597121C261F003EAD18 /* DialGadget.pluginspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DialGadget.pluginspec; sourceTree = "<group>"; };
65B36598121C261F003EAD18 /* dialgadgetconfiguration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dialgadgetconfiguration.cpp; sourceTree = "<group>"; };
65B36599121C261F003EAD18 /* dialgadgetconfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dialgadgetconfiguration.h; sourceTree = "<group>"; };
65B3659A121C261F003EAD18 /* dialgadgetfactory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dialgadgetfactory.cpp; sourceTree = "<group>"; };
65B3659B121C261F003EAD18 /* dialgadgetfactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dialgadgetfactory.h; sourceTree = "<group>"; };
65B3659C121C261F003EAD18 /* dialgadgetoptionspage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dialgadgetoptionspage.cpp; sourceTree = "<group>"; };
65B3659D121C261F003EAD18 /* dialgadgetoptionspage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dialgadgetoptionspage.h; sourceTree = "<group>"; };
65B3659E121C261F003EAD18 /* dialgadgetoptionspage.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = dialgadgetoptionspage.ui; sourceTree = "<group>"; };
65B3659F121C261F003EAD18 /* dialgadgetwidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dialgadgetwidget.cpp; sourceTree = "<group>"; };
65B365A0121C261F003EAD18 /* dialgadgetwidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dialgadgetwidget.h; sourceTree = "<group>"; };
65B365A1121C261F003EAD18 /* dialplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dialplugin.cpp; sourceTree = "<group>"; };
65B365A2121C261F003EAD18 /* dialplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dialplugin.h; sourceTree = "<group>"; };
65B365A4121C261F003EAD18 /* empty.svg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = empty.svg; sourceTree = "<group>"; };
65B365A6121C261F003EAD18 /* DoNothing.pluginspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DoNothing.pluginspec; sourceTree = "<group>"; };
65B365A7121C261F003EAD18 /* donothing.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = donothing.pro; sourceTree = "<group>"; };
65B365A8121C261F003EAD18 /* donothingplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = donothingplugin.cpp; sourceTree = "<group>"; };
65B365A9121C261F003EAD18 /* donothingplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = donothingplugin.h; sourceTree = "<group>"; };
65B365AB121C261F003EAD18 /* emptygadget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = emptygadget.cpp; sourceTree = "<group>"; };
65B365AC121C261F003EAD18 /* emptygadget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = emptygadget.h; sourceTree = "<group>"; };
65B365AD121C261F003EAD18 /* EmptyGadget.pluginspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = EmptyGadget.pluginspec; sourceTree = "<group>"; };
65B365AE121C261F003EAD18 /* emptygadget.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = emptygadget.pro; sourceTree = "<group>"; };
65B365AF121C261F003EAD18 /* emptygadgetfactory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = emptygadgetfactory.cpp; sourceTree = "<group>"; };
65B365B0121C261F003EAD18 /* emptygadgetfactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = emptygadgetfactory.h; sourceTree = "<group>"; };
65B365B1121C261F003EAD18 /* emptygadgetwidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = emptygadgetwidget.cpp; sourceTree = "<group>"; };
65B365B2121C261F003EAD18 /* emptygadgetwidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = emptygadgetwidget.h; sourceTree = "<group>"; };
65B365B3121C261F003EAD18 /* emptyplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = emptyplugin.cpp; sourceTree = "<group>"; };
65B365B4121C261F003EAD18 /* emptyplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = emptyplugin.h; sourceTree = "<group>"; };
65B365B6121C261F003EAD18 /* GCSControl.pluginspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GCSControl.pluginspec; sourceTree = "<group>"; };
65B365B7121C261F003EAD18 /* gcscontrol.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = gcscontrol.pro; sourceTree = "<group>"; };
65B365B8121C261F003EAD18 /* gcscontrol.qrc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = gcscontrol.qrc; sourceTree = "<group>"; };
65B365B9121C261F003EAD18 /* gcscontrol.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = gcscontrol.ui; sourceTree = "<group>"; };
65B365BA121C261F003EAD18 /* gcscontrolgadget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gcscontrolgadget.cpp; sourceTree = "<group>"; };
65B365BB121C261F003EAD18 /* gcscontrolgadget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gcscontrolgadget.h; sourceTree = "<group>"; };
65B365BC121C261F003EAD18 /* gcscontrolgadgetfactory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gcscontrolgadgetfactory.cpp; sourceTree = "<group>"; };
65B365BD121C261F003EAD18 /* gcscontrolgadgetfactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gcscontrolgadgetfactory.h; sourceTree = "<group>"; };
65B365BE121C261F003EAD18 /* gcscontrolgadgetwidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gcscontrolgadgetwidget.cpp; sourceTree = "<group>"; };
65B365BF121C261F003EAD18 /* gcscontrolgadgetwidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gcscontrolgadgetwidget.h; sourceTree = "<group>"; };
65B365C0121C261F003EAD18 /* gcscontrolplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gcscontrolplugin.cpp; sourceTree = "<group>"; };
65B365C1121C261F003EAD18 /* gcscontrolplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gcscontrolplugin.h; sourceTree = "<group>"; };
65B365C2121C261F003EAD18 /* gcsonctrolgadgetwidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gcsonctrolgadgetwidget.h; sourceTree = "<group>"; };
65B365C4121C261F003EAD18 /* joystick.svg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = joystick.svg; sourceTree = "<group>"; };
65B365C5121C261F003EAD18 /* joystickcontrol.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = joystickcontrol.cpp; sourceTree = "<group>"; };
65B365C6121C261F003EAD18 /* joystickcontrol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = joystickcontrol.h; sourceTree = "<group>"; };
65B365C8121C261F003EAD18 /* buffer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = buffer.cpp; sourceTree = "<group>"; };
65B365C9121C261F003EAD18 /* buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buffer.h; sourceTree = "<group>"; };
65B365CA121C261F003EAD18 /* gpsdisplay.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = gpsdisplay.pro; sourceTree = "<group>"; };
65B365CB121C261F003EAD18 /* gpsdisplay_dependencies.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = gpsdisplay_dependencies.pri; sourceTree = "<group>"; };
65B365CC121C261F003EAD18 /* gpsdisplaygadget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gpsdisplaygadget.cpp; sourceTree = "<group>"; };
65B365CD121C261F003EAD18 /* gpsdisplaygadget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gpsdisplaygadget.h; sourceTree = "<group>"; };
65B365CE121C261F003EAD18 /* GpsDisplayGadget.pluginspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = GpsDisplayGadget.pluginspec; sourceTree = "<group>"; };
65B365CF121C261F003EAD18 /* gpsdisplaygadgetconfiguration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gpsdisplaygadgetconfiguration.cpp; sourceTree = "<group>"; };
65B365D0121C261F003EAD18 /* gpsdisplaygadgetconfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gpsdisplaygadgetconfiguration.h; sourceTree = "<group>"; };
65B365D1121C261F003EAD18 /* gpsdisplaygadgetfactory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gpsdisplaygadgetfactory.cpp; sourceTree = "<group>"; };
65B365D2121C261F003EAD18 /* gpsdisplaygadgetfactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gpsdisplaygadgetfactory.h; sourceTree = "<group>"; };
65B365D3121C261F003EAD18 /* gpsdisplaygadgetoptionspage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gpsdisplaygadgetoptionspage.cpp; sourceTree = "<group>"; };
65B365D4121C261F003EAD18 /* gpsdisplaygadgetoptionspage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gpsdisplaygadgetoptionspage.h; sourceTree = "<group>"; };
65B365D5121C261F003EAD18 /* gpsdisplaygadgetoptionspage.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = gpsdisplaygadgetoptionspage.ui; sourceTree = "<group>"; };
65B365D6121C261F003EAD18 /* gpsdisplayplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gpsdisplayplugin.cpp; sourceTree = "<group>"; };
65B365D7121C261F003EAD18 /* gpsdisplayplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gpsdisplayplugin.h; sourceTree = "<group>"; };
65B365D8121C261F003EAD18 /* gpsdisplaythread.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gpsdisplaythread.cpp; sourceTree = "<group>"; };
65B365D9121C261F003EAD18 /* gpsdisplaythread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gpsdisplaythread.h; sourceTree = "<group>"; };
65B365DA121C261F003EAD18 /* gpsdisplaywidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gpsdisplaywidget.cpp; sourceTree = "<group>"; };
65B365DB121C261F003EAD18 /* gpsdisplaywidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gpsdisplaywidget.h; sourceTree = "<group>"; };
65B365DC121C261F003EAD18 /* gpsdisplaywidget.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = gpsdisplaywidget.ui; sourceTree = "<group>"; };
65B365DE121C261F003EAD18 /* flatEarth.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = flatEarth.png; sourceTree = "<group>"; };
65B365DF121C261F003EAD18 /* gpsEarth.svg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = gpsEarth.svg; sourceTree = "<group>"; };
65B365E0121C261F003EAD18 /* nmeaparser.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nmeaparser.cpp; sourceTree = "<group>"; };
65B365E1121C261F003EAD18 /* nmeaparser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nmeaparser.h; sourceTree = "<group>"; };
65B365E2121C261F003EAD18 /* widgetresources.qrc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = widgetresources.qrc; sourceTree = "<group>"; };
65B365E4121C261F003EAD18 /* flightgearbridge.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = flightgearbridge.cpp; sourceTree = "<group>"; };
65B365E5121C2620003EAD18 /* flightgearbridge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = flightgearbridge.h; sourceTree = "<group>"; };
65B365E6121C2620003EAD18 /* hitl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = hitl.cpp; sourceTree = "<group>"; };
65B365E7121C2620003EAD18 /* hitl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hitl.h; sourceTree = "<group>"; };
65B365E8121C2620003EAD18 /* HITL.pluginspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = HITL.pluginspec; sourceTree = "<group>"; };
65B365E9121C2620003EAD18 /* hitl.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = hitl.pro; sourceTree = "<group>"; };
65B365EA121C2620003EAD18 /* hitl_dependencies.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = hitl_dependencies.pri; sourceTree = "<group>"; };
65B365EB121C2620003EAD18 /* hitlconfiguration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = hitlconfiguration.cpp; sourceTree = "<group>"; };
65B365EC121C2620003EAD18 /* hitlconfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hitlconfiguration.h; sourceTree = "<group>"; };
65B365ED121C2620003EAD18 /* hitlfactory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = hitlfactory.cpp; sourceTree = "<group>"; };
65B365EE121C2620003EAD18 /* hitlfactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hitlfactory.h; sourceTree = "<group>"; };
65B365EF121C2620003EAD18 /* hitloptionspage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = hitloptionspage.cpp; sourceTree = "<group>"; };
65B365F0121C2620003EAD18 /* hitloptionspage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hitloptionspage.h; sourceTree = "<group>"; };
65B365F1121C2620003EAD18 /* hitloptionspage.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = hitloptionspage.ui; sourceTree = "<group>"; };
65B365F2121C2620003EAD18 /* hitlplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = hitlplugin.cpp; sourceTree = "<group>"; };
65B365F3121C2620003EAD18 /* hitlplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hitlplugin.h; sourceTree = "<group>"; };
65B365F4121C2620003EAD18 /* hitlresources.qrc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = hitlresources.qrc; sourceTree = "<group>"; };
65B365F5121C2620003EAD18 /* hitlwidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = hitlwidget.cpp; sourceTree = "<group>"; };
65B365F6121C2620003EAD18 /* hitlwidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hitlwidget.h; sourceTree = "<group>"; };
65B365F7121C2620003EAD18 /* hitlwidget.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = hitlwidget.ui; sourceTree = "<group>"; };
65B365F8121C2620003EAD18 /* opfgprotocol.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = opfgprotocol.xml; sourceTree = "<group>"; };
65B365FA121C2620003EAD18 /* hitlil2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = hitlil2.cpp; sourceTree = "<group>"; };
65B365FB121C2620003EAD18 /* hitlil2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hitlil2.h; sourceTree = "<group>"; };
65B365FC121C2620003EAD18 /* HITLIL2.pluginspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = HITLIL2.pluginspec; sourceTree = "<group>"; };
65B365FD121C2620003EAD18 /* hitlil2.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = hitlil2.pro; sourceTree = "<group>"; };
65B365FE121C2620003EAD18 /* hitlil2_dependencies.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = hitlil2_dependencies.pri; sourceTree = "<group>"; };
65B365FF121C2620003EAD18 /* hitlil2configuration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = hitlil2configuration.cpp; sourceTree = "<group>"; };
65B36600121C2620003EAD18 /* hitlil2configuration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hitlil2configuration.h; sourceTree = "<group>"; };
65B36601121C2620003EAD18 /* hitlil2factory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = hitlil2factory.cpp; sourceTree = "<group>"; };
65B36602121C2620003EAD18 /* hitlil2factory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hitlil2factory.h; sourceTree = "<group>"; };
65B36603121C2620003EAD18 /* hitlil2optionspage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = hitlil2optionspage.cpp; sourceTree = "<group>"; };
65B36604121C2620003EAD18 /* hitlil2optionspage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hitlil2optionspage.h; sourceTree = "<group>"; };
65B36605121C2620003EAD18 /* hitlil2optionspage.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = hitlil2optionspage.ui; sourceTree = "<group>"; };
65B36606121C2620003EAD18 /* hitlil2plugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = hitlil2plugin.cpp; sourceTree = "<group>"; };
65B36607121C2620003EAD18 /* hitlil2plugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hitlil2plugin.h; sourceTree = "<group>"; };
65B36608121C2620003EAD18 /* hitlil2widget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = hitlil2widget.cpp; sourceTree = "<group>"; };
65B36609121C2620003EAD18 /* hitlil2widget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hitlil2widget.h; sourceTree = "<group>"; };
65B3660A121C2620003EAD18 /* hitlil2widget.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = hitlil2widget.ui; sourceTree = "<group>"; };
65B3660B121C2620003EAD18 /* il2bridge.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = il2bridge.cpp; sourceTree = "<group>"; };
65B3660C121C2620003EAD18 /* il2bridge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = il2bridge.h; sourceTree = "<group>"; };
65B3660E121C2620003EAD18 /* importexport.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = importexport.pro; sourceTree = "<group>"; };
65B3660F121C2620003EAD18 /* importexport_dependencies.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = importexport_dependencies.pri; sourceTree = "<group>"; };
65B36610121C2620003EAD18 /* importexport_global.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = importexport_global.h; sourceTree = "<group>"; };
65B36611121C2620003EAD18 /* importexportgadget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = importexportgadget.cpp; sourceTree = "<group>"; };
65B36612121C2620003EAD18 /* importexportgadget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = importexportgadget.h; sourceTree = "<group>"; };
65B36613121C2620003EAD18 /* ImportExportGadget.pluginspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ImportExportGadget.pluginspec; sourceTree = "<group>"; };
65B36614121C2620003EAD18 /* importexportgadgetconfiguration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = importexportgadgetconfiguration.cpp; sourceTree = "<group>"; };
65B36615121C2620003EAD18 /* importexportgadgetconfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = importexportgadgetconfiguration.h; sourceTree = "<group>"; };
65B36616121C2620003EAD18 /* importexportgadgetfactory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = importexportgadgetfactory.cpp; sourceTree = "<group>"; };
65B36617121C2620003EAD18 /* importexportgadgetfactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = importexportgadgetfactory.h; sourceTree = "<group>"; };
65B36618121C2620003EAD18 /* importexportgadgetoptionspage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = importexportgadgetoptionspage.cpp; sourceTree = "<group>"; };
65B36619121C2620003EAD18 /* importexportgadgetoptionspage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = importexportgadgetoptionspage.h; sourceTree = "<group>"; };
65B3661A121C2620003EAD18 /* importexportgadgetoptionspage.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = importexportgadgetoptionspage.ui; sourceTree = "<group>"; };
65B3661B121C2620003EAD18 /* importexportgadgetwidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = importexportgadgetwidget.cpp; sourceTree = "<group>"; };
65B3661C121C2620003EAD18 /* importexportgadgetwidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = importexportgadgetwidget.h; sourceTree = "<group>"; };
65B3661D121C2620003EAD18 /* importexportgadgetwidget.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = importexportgadgetwidget.ui; sourceTree = "<group>"; };
65B3661E121C2620003EAD18 /* importexportplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = importexportplugin.cpp; sourceTree = "<group>"; };
65B3661F121C2620003EAD18 /* importexportplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = importexportplugin.h; sourceTree = "<group>"; };
65B36621121C2620003EAD18 /* IPconnection.pluginspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = IPconnection.pluginspec; sourceTree = "<group>"; };
65B36622121C2620003EAD18 /* ipconnection.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ipconnection.pri; sourceTree = "<group>"; };
65B36623121C2620003EAD18 /* ipconnection.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ipconnection.pro; sourceTree = "<group>"; };
65B36624121C2620003EAD18 /* ipconnection_dependencies.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ipconnection_dependencies.pri; sourceTree = "<group>"; };
65B36625121C2620003EAD18 /* ipconnection_global.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ipconnection_global.h; sourceTree = "<group>"; };
65B36626121C2620003EAD18 /* ipconnectionconfiguration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ipconnectionconfiguration.cpp; sourceTree = "<group>"; };
65B36627121C2620003EAD18 /* ipconnectionconfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ipconnectionconfiguration.h; sourceTree = "<group>"; };
65B36628121C2620003EAD18 /* ipconnectionoptionspage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ipconnectionoptionspage.cpp; sourceTree = "<group>"; };
65B36629121C2620003EAD18 /* ipconnectionoptionspage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ipconnectionoptionspage.h; sourceTree = "<group>"; };
65B3662A121C2620003EAD18 /* ipconnectionoptionspage.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = ipconnectionoptionspage.ui; sourceTree = "<group>"; };
65B3662B121C2620003EAD18 /* ipconnectionplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ipconnectionplugin.cpp; sourceTree = "<group>"; };
65B3662C121C2620003EAD18 /* ipconnectionplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ipconnectionplugin.h; sourceTree = "<group>"; };
65B3662F121C2620003EAD18 /* empty.svg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = empty.svg; sourceTree = "<group>"; };
65B36630121C2620003EAD18 /* lineardial.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = lineardial.pro; sourceTree = "<group>"; };
65B36631121C2620003EAD18 /* lineardial.qrc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = lineardial.qrc; sourceTree = "<group>"; };
65B36632121C2620003EAD18 /* lineardial_dependencies.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = lineardial_dependencies.pri; sourceTree = "<group>"; };
65B36633121C2620003EAD18 /* lineardialgadget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = lineardialgadget.cpp; sourceTree = "<group>"; };
65B36634121C2620003EAD18 /* lineardialgadget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lineardialgadget.h; sourceTree = "<group>"; };
65B36635121C2620003EAD18 /* LineardialGadget.pluginspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LineardialGadget.pluginspec; sourceTree = "<group>"; };
65B36636121C2620003EAD18 /* lineardialgadgetconfiguration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = lineardialgadgetconfiguration.cpp; sourceTree = "<group>"; };
65B36637121C2620003EAD18 /* lineardialgadgetconfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lineardialgadgetconfiguration.h; sourceTree = "<group>"; };
65B36638121C2620003EAD18 /* lineardialgadgetfactory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = lineardialgadgetfactory.cpp; sourceTree = "<group>"; };
65B36639121C2620003EAD18 /* lineardialgadgetfactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lineardialgadgetfactory.h; sourceTree = "<group>"; };
65B3663A121C2620003EAD18 /* lineardialgadgetoptionspage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = lineardialgadgetoptionspage.cpp; sourceTree = "<group>"; };
65B3663B121C2620003EAD18 /* lineardialgadgetoptionspage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lineardialgadgetoptionspage.h; sourceTree = "<group>"; };
65B3663C121C2620003EAD18 /* lineardialgadgetoptionspage.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = lineardialgadgetoptionspage.ui; sourceTree = "<group>"; };
65B3663D121C2620003EAD18 /* lineardialgadgetwidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = lineardialgadgetwidget.cpp; sourceTree = "<group>"; };
65B3663E121C2620003EAD18 /* lineardialgadgetwidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lineardialgadgetwidget.h; sourceTree = "<group>"; };
65B3663F121C2620003EAD18 /* lineardialplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = lineardialplugin.cpp; sourceTree = "<group>"; };
65B36640121C2620003EAD18 /* lineardialplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lineardialplugin.h; sourceTree = "<group>"; };
65B36642121C2620003EAD18 /* modelview.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = modelview.pro; sourceTree = "<group>"; };
65B36643121C2620003EAD18 /* modelview_dependencies.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = modelview_dependencies.pri; sourceTree = "<group>"; };
65B36644121C2620003EAD18 /* modelviewgadget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = modelviewgadget.cpp; sourceTree = "<group>"; };
65B36645121C2620003EAD18 /* modelviewgadget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = modelviewgadget.h; sourceTree = "<group>"; };
65B36646121C2620003EAD18 /* ModelViewGadget.pluginspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ModelViewGadget.pluginspec; sourceTree = "<group>"; };
65B36647121C2620003EAD18 /* modelviewgadgetconfiguration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = modelviewgadgetconfiguration.cpp; sourceTree = "<group>"; };
65B36648121C2620003EAD18 /* modelviewgadgetconfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = modelviewgadgetconfiguration.h; sourceTree = "<group>"; };
65B36649121C2620003EAD18 /* modelviewgadgetfactory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = modelviewgadgetfactory.cpp; sourceTree = "<group>"; };
65B3664A121C2620003EAD18 /* modelviewgadgetfactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = modelviewgadgetfactory.h; sourceTree = "<group>"; };
65B3664B121C2620003EAD18 /* modelviewgadgetoptionspage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = modelviewgadgetoptionspage.cpp; sourceTree = "<group>"; };
65B3664C121C2620003EAD18 /* modelviewgadgetoptionspage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = modelviewgadgetoptionspage.h; sourceTree = "<group>"; };
65B3664D121C2620003EAD18 /* modelviewgadgetwidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = modelviewgadgetwidget.cpp; sourceTree = "<group>"; };
65B3664E121C2620003EAD18 /* modelviewgadgetwidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = modelviewgadgetwidget.h; sourceTree = "<group>"; };
65B3664F121C2620003EAD18 /* modelviewoptionspage.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = modelviewoptionspage.ui; sourceTree = "<group>"; };
65B36650121C2620003EAD18 /* modelviewplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = modelviewplugin.cpp; sourceTree = "<group>"; };
65B36651121C2620003EAD18 /* modelviewplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = modelviewplugin.h; sourceTree = "<group>"; };
65B36654121C2620003EAD18 /* add.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = add.png; sourceTree = "<group>"; };
65B36655121C2620003EAD18 /* delete.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = delete.png; sourceTree = "<group>"; };
65B36656121C2620003EAD18 /* modify.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = modify.png; sourceTree = "<group>"; };
65B36657121C2620003EAD18 /* play.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = play.png; sourceTree = "<group>"; };
65B36658121C2620003EAD18 /* play2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = play2.png; sourceTree = "<group>"; };
65B36659121C2620003EAD18 /* stop.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = stop.png; sourceTree = "<group>"; };
65B3665A121C2620003EAD18 /* notify.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = notify.pro; sourceTree = "<group>"; };
65B3665B121C2620003EAD18 /* notifyitemdelegate.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = notifyitemdelegate.cpp; sourceTree = "<group>"; };
65B3665C121C2620003EAD18 /* notifyitemdelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = notifyitemdelegate.h; sourceTree = "<group>"; };
65B3665D121C2620003EAD18 /* notifyplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = notifyplugin.cpp; sourceTree = "<group>"; };
65B3665E121C2620003EAD18 /* notifyplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = notifyplugin.h; sourceTree = "<group>"; };
65B3665F121C2620003EAD18 /* NotifyPlugin.pluginspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = NotifyPlugin.pluginspec; sourceTree = "<group>"; };
65B36660121C2620003EAD18 /* notifyplugin_dependencies.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = notifyplugin_dependencies.pri; sourceTree = "<group>"; };
65B36661121C2620003EAD18 /* notifypluginconfiguration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = notifypluginconfiguration.cpp; sourceTree = "<group>"; };
65B36662121C2620003EAD18 /* notifypluginconfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = notifypluginconfiguration.h; sourceTree = "<group>"; };
65B36663121C2620003EAD18 /* notifypluginfactory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = notifypluginfactory.cpp; sourceTree = "<group>"; };
65B36664121C2620003EAD18 /* notifypluginfactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = notifypluginfactory.h; sourceTree = "<group>"; };
65B36665121C2620003EAD18 /* notifyplugingadget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = notifyplugingadget.h; sourceTree = "<group>"; };
65B36666121C2620003EAD18 /* notifypluginoptionspage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = notifypluginoptionspage.cpp; sourceTree = "<group>"; };
65B36667121C2620003EAD18 /* notifypluginoptionspage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = notifypluginoptionspage.h; sourceTree = "<group>"; };
65B36668121C2620003EAD18 /* notifypluginoptionspage.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = notifypluginoptionspage.ui; sourceTree = "<group>"; };
65B36669121C2620003EAD18 /* notifytablemodel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = notifytablemodel.cpp; sourceTree = "<group>"; };
65B3666A121C2620003EAD18 /* notifytablemodel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = notifytablemodel.h; sourceTree = "<group>"; };
65B3666B121C2620003EAD18 /* res.qrc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = res.qrc; sourceTree = "<group>"; };
65B3666E121C2620003EAD18 /* Blank.psd */ = {isa = PBXFileReference; lastKnownFileType = file; path = Blank.psd; sourceTree = "<group>"; };
65B3666F121C2620003EAD18 /* Blank_Pressed.psd */ = {isa = PBXFileReference; lastKnownFileType = file; path = Blank_Pressed.psd; sourceTree = "<group>"; };
65B36670121C2620003EAD18 /* button_bar.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = button_bar.png; sourceTree = "<group>"; };
65B36671121C2620003EAD18 /* circle.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = circle.png; sourceTree = "<group>"; };
65B36672121C2620003EAD18 /* combobox_down_arrow.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = combobox_down_arrow.png; sourceTree = "<group>"; };
65B36673121C2620003EAD18 /* gcs.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = gcs.png; sourceTree = "<group>"; };
65B36674121C2620003EAD18 /* go.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = go.png; sourceTree = "<group>"; };
65B36675121C2620003EAD18 /* hold.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = hold.png; sourceTree = "<group>"; };
65B36676121C2620003EAD18 /* home.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = home.png; sourceTree = "<group>"; };
65B36677121C2620003EAD18 /* hover.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = hover.png; sourceTree = "<group>"; };
65B36678121C2620003EAD18 /* left_but.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = left_but.png; sourceTree = "<group>"; };
65B36679121C2620003EAD18 /* minus.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = minus.png; sourceTree = "<group>"; };
65B3667A121C2620003EAD18 /* minus2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = minus2.png; sourceTree = "<group>"; };
65B3667B121C2620003EAD18 /* next_waypoint.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = next_waypoint.png; sourceTree = "<group>"; };
65B3667C121C2620003EAD18 /* ok.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ok.png; sourceTree = "<group>"; };
65B3667D121C2620003EAD18 /* pause.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = pause.png; sourceTree = "<group>"; };
65B3667E121C2620003EAD18 /* plus.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = plus.png; sourceTree = "<group>"; };
65B3667F121C2620003EAD18 /* plus2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = plus2.png; sourceTree = "<group>"; };
65B36680121C2620003EAD18 /* prev_waypoint.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = prev_waypoint.png; sourceTree = "<group>"; };
65B36681121C2620003EAD18 /* right_but.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = right_but.png; sourceTree = "<group>"; };
65B36682121C2620003EAD18 /* stop.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = stop.png; sourceTree = "<group>"; };
65B36683121C2620003EAD18 /* uav.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = uav.png; sourceTree = "<group>"; };
65B36684121C2620003EAD18 /* uav_heading.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = uav_heading.png; sourceTree = "<group>"; };
65B36685121C2620003EAD18 /* uav_trail.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = uav_trail.png; sourceTree = "<group>"; };
65B36686121C2620003EAD18 /* uav_trail_clear.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = uav_trail_clear.png; sourceTree = "<group>"; };
65B36687121C2620003EAD18 /* waypoint.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = waypoint.png; sourceTree = "<group>"; };
65B36688121C2620003EAD18 /* waypoint_marker1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = waypoint_marker1.png; sourceTree = "<group>"; };
65B36689121C2620003EAD18 /* waypoint_marker2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = waypoint_marker2.png; sourceTree = "<group>"; };
65B3668A121C2620003EAD18 /* opmap.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = opmap.pro; sourceTree = "<group>"; };
65B3668B121C2620003EAD18 /* opmap.qrc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = opmap.qrc; sourceTree = "<group>"; };
65B3668C121C2620003EAD18 /* opmap_edit_waypoint_dialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = opmap_edit_waypoint_dialog.cpp; sourceTree = "<group>"; };
65B3668D121C2620003EAD18 /* opmap_edit_waypoint_dialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opmap_edit_waypoint_dialog.h; sourceTree = "<group>"; };
65B3668E121C2620003EAD18 /* opmap_edit_waypoint_dialog.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = opmap_edit_waypoint_dialog.ui; sourceTree = "<group>"; };
65B3668F121C2620003EAD18 /* opmap_overlay_widget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = opmap_overlay_widget.cpp; sourceTree = "<group>"; };
65B36690121C2620003EAD18 /* opmap_overlay_widget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opmap_overlay_widget.h; sourceTree = "<group>"; };
65B36691121C2620003EAD18 /* opmap_overlay_widget.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = opmap_overlay_widget.ui; sourceTree = "<group>"; };
65B36692121C2620003EAD18 /* opmap_statusbar_widget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = opmap_statusbar_widget.cpp; sourceTree = "<group>"; };
65B36693121C2620003EAD18 /* opmap_statusbar_widget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opmap_statusbar_widget.h; sourceTree = "<group>"; };
65B36694121C2620003EAD18 /* opmap_statusbar_widget.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = opmap_statusbar_widget.ui; sourceTree = "<group>"; };
65B36695121C2620003EAD18 /* opmap_waypointeditor_dialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = opmap_waypointeditor_dialog.cpp; sourceTree = "<group>"; };
65B36696121C2620003EAD18 /* opmap_waypointeditor_dialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opmap_waypointeditor_dialog.h; sourceTree = "<group>"; };
65B36697121C2620003EAD18 /* opmap_waypointeditor_dialog.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = opmap_waypointeditor_dialog.ui; sourceTree = "<group>"; };
65B36698121C2620003EAD18 /* opmap_widget.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = opmap_widget.ui; sourceTree = "<group>"; };
65B36699121C2620003EAD18 /* opmap_zoom_slider_widget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = opmap_zoom_slider_widget.cpp; sourceTree = "<group>"; };
65B3669A121C2620003EAD18 /* opmap_zoom_slider_widget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opmap_zoom_slider_widget.h; sourceTree = "<group>"; };
65B3669B121C2620003EAD18 /* opmap_zoom_slider_widget.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = opmap_zoom_slider_widget.ui; sourceTree = "<group>"; };
65B3669C121C2620003EAD18 /* opmapgadget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = opmapgadget.cpp; sourceTree = "<group>"; };
65B3669D121C2620003EAD18 /* opmapgadget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opmapgadget.h; sourceTree = "<group>"; };
65B3669E121C2620003EAD18 /* OPMapGadget.pluginspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = OPMapGadget.pluginspec; sourceTree = "<group>"; };
65B3669F121C2620003EAD18 /* opmapgadgetconfiguration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = opmapgadgetconfiguration.cpp; sourceTree = "<group>"; };
65B366A0121C2620003EAD18 /* opmapgadgetconfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opmapgadgetconfiguration.h; sourceTree = "<group>"; };
65B366A1121C2620003EAD18 /* opmapgadgetfactory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = opmapgadgetfactory.cpp; sourceTree = "<group>"; };
65B366A2121C2620003EAD18 /* opmapgadgetfactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opmapgadgetfactory.h; sourceTree = "<group>"; };
65B366A3121C2620003EAD18 /* opmapgadgetoptionspage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = opmapgadgetoptionspage.cpp; sourceTree = "<group>"; };
65B366A4121C2620003EAD18 /* opmapgadgetoptionspage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opmapgadgetoptionspage.h; sourceTree = "<group>"; };
65B366A5121C2620003EAD18 /* opmapgadgetoptionspage.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = opmapgadgetoptionspage.ui; sourceTree = "<group>"; };
65B366A6121C2620003EAD18 /* opmapgadgetwidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = opmapgadgetwidget.cpp; sourceTree = "<group>"; };
65B366A7121C2620003EAD18 /* opmapgadgetwidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opmapgadgetwidget.h; sourceTree = "<group>"; };
65B366A8121C2620003EAD18 /* opmapplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = opmapplugin.cpp; sourceTree = "<group>"; };
65B366A9121C2620003EAD18 /* opmapplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opmapplugin.h; sourceTree = "<group>"; };
65B366AC121C2620003EAD18 /* pfd-default.svg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = "pfd-default.svg"; sourceTree = "<group>"; };
65B366AD121C2620003EAD18 /* pfd.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pfd.pro; sourceTree = "<group>"; };
65B366AE121C2620003EAD18 /* pfd.qrc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pfd.qrc; sourceTree = "<group>"; };
65B366AF121C2620003EAD18 /* pfd_dependencies.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pfd_dependencies.pri; sourceTree = "<group>"; };
65B366B0121C2620003EAD18 /* pfdgadget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pfdgadget.cpp; sourceTree = "<group>"; };
65B366B1121C2620003EAD18 /* pfdgadget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pfdgadget.h; sourceTree = "<group>"; };
65B366B2121C2620003EAD18 /* PFDGadget.pluginspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PFDGadget.pluginspec; sourceTree = "<group>"; };
65B366B3121C2620003EAD18 /* pfdgadgetconfiguration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pfdgadgetconfiguration.cpp; sourceTree = "<group>"; };
65B366B4121C2620003EAD18 /* pfdgadgetconfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pfdgadgetconfiguration.h; sourceTree = "<group>"; };
65B366B5121C2620003EAD18 /* pfdgadgetfactory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pfdgadgetfactory.cpp; sourceTree = "<group>"; };
65B366B6121C2620003EAD18 /* pfdgadgetfactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pfdgadgetfactory.h; sourceTree = "<group>"; };
65B366B7121C2620003EAD18 /* pfdgadgetoptionspage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pfdgadgetoptionspage.cpp; sourceTree = "<group>"; };
65B366B8121C2620003EAD18 /* pfdgadgetoptionspage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pfdgadgetoptionspage.h; sourceTree = "<group>"; };
65B366B9121C2620003EAD18 /* pfdgadgetoptionspage.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = pfdgadgetoptionspage.ui; sourceTree = "<group>"; };
65B366BA121C2620003EAD18 /* pfdgadgetwidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pfdgadgetwidget.cpp; sourceTree = "<group>"; };
65B366BB121C2620003EAD18 /* pfdgadgetwidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pfdgadgetwidget.h; sourceTree = "<group>"; };
65B366BC121C2620003EAD18 /* pfdplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pfdplugin.cpp; sourceTree = "<group>"; };
65B366BD121C2620003EAD18 /* pfdplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pfdplugin.h; sourceTree = "<group>"; };
65B366BE121C2620003EAD18 /* plugins.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = plugins.pro; sourceTree = "<group>"; };
65B366C0121C2620003EAD18 /* pjrc_rawhid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pjrc_rawhid.h; sourceTree = "<group>"; };
65B366C1121C2620003EAD18 /* pjrc_rawhid_mac.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pjrc_rawhid_mac.cpp; sourceTree = "<group>"; };
65B366C2121C2620003EAD18 /* pjrc_rawhid_unix.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pjrc_rawhid_unix.cpp; sourceTree = "<group>"; };
65B366C3121C2620003EAD18 /* pjrc_rawhid_win.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pjrc_rawhid_win.cpp; sourceTree = "<group>"; };
65B366C4121C2620003EAD18 /* rawhid.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rawhid.cpp; sourceTree = "<group>"; };
65B366C5121C2620003EAD18 /* rawhid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rawhid.h; sourceTree = "<group>"; };
65B366C6121C2620003EAD18 /* RawHID.pluginspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = RawHID.pluginspec; sourceTree = "<group>"; };
65B366C7121C2620003EAD18 /* rawhid.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = rawhid.pri; sourceTree = "<group>"; };
65B366C8121C2620003EAD18 /* rawhid.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = rawhid.pro; sourceTree = "<group>"; };
65B366C9121C2620003EAD18 /* rawhid_const.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rawhid_const.h; sourceTree = "<group>"; };
65B366CA121C2620003EAD18 /* rawhid_dependencies.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = rawhid_dependencies.pri; sourceTree = "<group>"; };
65B366CB121C2620003EAD18 /* rawhid_global.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rawhid_global.h; sourceTree = "<group>"; };
65B366CC121C2620003EAD18 /* rawhidplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rawhidplugin.cpp; sourceTree = "<group>"; };
65B366CD121C2620003EAD18 /* rawhidplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rawhidplugin.h; sourceTree = "<group>"; };
65B366CF121C2620003EAD18 /* plotdata.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = plotdata.cpp; sourceTree = "<group>"; };
65B366D0121C2620003EAD18 /* plotdata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = plotdata.h; sourceTree = "<group>"; };
65B366D1121C2620003EAD18 /* scope.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = scope.pro; sourceTree = "<group>"; };
65B366D2121C2620003EAD18 /* scopegadget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = scopegadget.cpp; sourceTree = "<group>"; };
65B366D3121C2620003EAD18 /* scopegadget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = scopegadget.h; sourceTree = "<group>"; };
65B366D4121C2620003EAD18 /* ScopeGadget.pluginspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ScopeGadget.pluginspec; sourceTree = "<group>"; };
65B366D5121C2620003EAD18 /* scopegadgetconfiguration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = scopegadgetconfiguration.cpp; sourceTree = "<group>"; };
65B366D6121C2620003EAD18 /* scopegadgetconfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = scopegadgetconfiguration.h; sourceTree = "<group>"; };
65B366D7121C2620003EAD18 /* scopegadgetfactory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = scopegadgetfactory.cpp; sourceTree = "<group>"; };
65B366D8121C2620003EAD18 /* scopegadgetfactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = scopegadgetfactory.h; sourceTree = "<group>"; };
65B366D9121C2620003EAD18 /* scopegadgetoptionspage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = scopegadgetoptionspage.cpp; sourceTree = "<group>"; };
65B366DA121C2620003EAD18 /* scopegadgetoptionspage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = scopegadgetoptionspage.h; sourceTree = "<group>"; };
65B366DB121C2620003EAD18 /* scopegadgetoptionspage.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = scopegadgetoptionspage.ui; sourceTree = "<group>"; };
65B366DC121C2620003EAD18 /* scopegadgetwidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = scopegadgetwidget.cpp; sourceTree = "<group>"; };
65B366DD121C2620003EAD18 /* scopegadgetwidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = scopegadgetwidget.h; sourceTree = "<group>"; };
65B366DE121C2620003EAD18 /* scopeplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = scopeplugin.cpp; sourceTree = "<group>"; };
65B366DF121C2620003EAD18 /* scopeplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = scopeplugin.h; sourceTree = "<group>"; };
65B366E1121C2620003EAD18 /* Serial.pluginspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Serial.pluginspec; sourceTree = "<group>"; };
65B366E2121C2620003EAD18 /* serial.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = serial.pri; sourceTree = "<group>"; };
65B366E3121C2620003EAD18 /* serial_dependencies.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = serial_dependencies.pri; sourceTree = "<group>"; };
65B366E4121C2620003EAD18 /* serial_global.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = serial_global.h; sourceTree = "<group>"; };
65B366E5121C2620003EAD18 /* serialconnection.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = serialconnection.pro; sourceTree = "<group>"; };
65B366E6121C2620003EAD18 /* serialplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = serialplugin.cpp; sourceTree = "<group>"; };
65B366E7121C2620003EAD18 /* serialplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = serialplugin.h; sourceTree = "<group>"; };
65B366E9121C2620003EAD18 /* systemhealth.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = systemhealth.pro; sourceTree = "<group>"; };
65B366EA121C2620003EAD18 /* systemhealth_dependencies.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = systemhealth_dependencies.pri; sourceTree = "<group>"; };
65B366EB121C2620003EAD18 /* systemhealthgadget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = systemhealthgadget.cpp; sourceTree = "<group>"; };
65B366EC121C2620003EAD18 /* systemhealthgadget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = systemhealthgadget.h; sourceTree = "<group>"; };
65B366ED121C2620003EAD18 /* SystemHealthGadget.pluginspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = SystemHealthGadget.pluginspec; sourceTree = "<group>"; };
65B366EE121C2620003EAD18 /* systemhealthgadgetconfiguration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = systemhealthgadgetconfiguration.cpp; sourceTree = "<group>"; };
65B366EF121C2620003EAD18 /* systemhealthgadgetconfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = systemhealthgadgetconfiguration.h; sourceTree = "<group>"; };
65B366F0121C2620003EAD18 /* systemhealthgadgetfactory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = systemhealthgadgetfactory.cpp; sourceTree = "<group>"; };
65B366F1121C2620003EAD18 /* systemhealthgadgetfactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = systemhealthgadgetfactory.h; sourceTree = "<group>"; };
65B366F2121C2620003EAD18 /* systemhealthgadgetoptionspage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = systemhealthgadgetoptionspage.cpp; sourceTree = "<group>"; };
65B366F3121C2620003EAD18 /* systemhealthgadgetoptionspage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = systemhealthgadgetoptionspage.h; sourceTree = "<group>"; };
65B366F4121C2620003EAD18 /* systemhealthgadgetoptionspage.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = systemhealthgadgetoptionspage.ui; sourceTree = "<group>"; };
65B366F5121C2620003EAD18 /* systemhealthgadgetwidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = systemhealthgadgetwidget.cpp; sourceTree = "<group>"; };
65B366F6121C2620003EAD18 /* systemhealthgadgetwidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = systemhealthgadgetwidget.h; sourceTree = "<group>"; };
65B366F7121C2620003EAD18 /* systemhealthplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = systemhealthplugin.cpp; sourceTree = "<group>"; };
65B366F8121C2620003EAD18 /* systemhealthplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = systemhealthplugin.h; sourceTree = "<group>"; };
65B366FA121C2620003EAD18 /* browseritemdelegate.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = browseritemdelegate.cpp; sourceTree = "<group>"; };
65B366FB121C2620003EAD18 /* browseritemdelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = browseritemdelegate.h; sourceTree = "<group>"; };
65B366FC121C2620003EAD18 /* browserplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = browserplugin.cpp; sourceTree = "<group>"; };
65B366FD121C2620003EAD18 /* browserplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = browserplugin.h; sourceTree = "<group>"; };
65B366FE121C2620003EAD18 /* fieldtreeitem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = fieldtreeitem.cpp; sourceTree = "<group>"; };
65B366FF121C2620003EAD18 /* fieldtreeitem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fieldtreeitem.h; sourceTree = "<group>"; };
65B36700121C2620003EAD18 /* treeitem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = treeitem.cpp; sourceTree = "<group>"; };
65B36701121C2620003EAD18 /* treeitem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = treeitem.h; sourceTree = "<group>"; };
65B36702121C2620003EAD18 /* uavobjectbrowser.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uavobjectbrowser.cpp; sourceTree = "<group>"; };
65B36703121C2620003EAD18 /* uavobjectbrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uavobjectbrowser.h; sourceTree = "<group>"; };
65B36704121C2620003EAD18 /* UAVObjectBrowser.pluginspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UAVObjectBrowser.pluginspec; sourceTree = "<group>"; };
65B36705121C2620003EAD18 /* uavobjectbrowser.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = uavobjectbrowser.pro; sourceTree = "<group>"; };
65B36706121C2620003EAD18 /* uavobjectbrowser.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = uavobjectbrowser.ui; sourceTree = "<group>"; };
65B36707121C2620003EAD18 /* uavobjectbrowser_dependencies.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = uavobjectbrowser_dependencies.pri; sourceTree = "<group>"; };
65B36708121C2620003EAD18 /* uavobjectbrowserconfiguration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uavobjectbrowserconfiguration.cpp; sourceTree = "<group>"; };
65B36709121C2620003EAD18 /* uavobjectbrowserconfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uavobjectbrowserconfiguration.h; sourceTree = "<group>"; };
65B3670A121C2620003EAD18 /* uavobjectbrowserfactory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uavobjectbrowserfactory.cpp; sourceTree = "<group>"; };
65B3670B121C2620003EAD18 /* uavobjectbrowserfactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uavobjectbrowserfactory.h; sourceTree = "<group>"; };
65B3670C121C2620003EAD18 /* uavobjectbrowseroptionspage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uavobjectbrowseroptionspage.cpp; sourceTree = "<group>"; };
65B3670D121C2620003EAD18 /* uavobjectbrowseroptionspage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uavobjectbrowseroptionspage.h; sourceTree = "<group>"; };
65B3670E121C2620003EAD18 /* uavobjectbrowseroptionspage.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = uavobjectbrowseroptionspage.ui; sourceTree = "<group>"; };
65B3670F121C2620003EAD18 /* uavobjectbrowserwidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uavobjectbrowserwidget.cpp; sourceTree = "<group>"; };
65B36710121C2620003EAD18 /* uavobjectbrowserwidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uavobjectbrowserwidget.h; sourceTree = "<group>"; };
65B36711121C2620003EAD18 /* uavobjecttreemodel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uavobjecttreemodel.cpp; sourceTree = "<group>"; };
65B36712121C2620003EAD18 /* uavobjecttreemodel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uavobjecttreemodel.h; sourceTree = "<group>"; };
65B36714121C2620003EAD18 /* actuatorcommand.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = actuatorcommand.cpp; sourceTree = "<group>"; };
65B36715121C2620003EAD18 /* actuatorcommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = actuatorcommand.h; sourceTree = "<group>"; };
65B36716121C2620003EAD18 /* actuatorcommand.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = actuatorcommand.py; sourceTree = "<group>"; };
65B36717121C2620003EAD18 /* actuatordesired.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = actuatordesired.cpp; sourceTree = "<group>"; };
65B36718121C2620003EAD18 /* actuatordesired.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = actuatordesired.h; sourceTree = "<group>"; };
65B36719121C2620003EAD18 /* actuatordesired.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = actuatordesired.py; sourceTree = "<group>"; };
65B3671A121C2620003EAD18 /* actuatorsettings.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = actuatorsettings.cpp; sourceTree = "<group>"; };
65B3671B121C2620003EAD18 /* actuatorsettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = actuatorsettings.h; sourceTree = "<group>"; };
65B3671C121C2620003EAD18 /* actuatorsettings.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = actuatorsettings.py; sourceTree = "<group>"; };
65B3671D121C2620003EAD18 /* ahrsstatus.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ahrsstatus.cpp; sourceTree = "<group>"; };
65B3671E121C2620003EAD18 /* ahrsstatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ahrsstatus.h; sourceTree = "<group>"; };
65B3671F121C2620003EAD18 /* ahrsstatus.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = ahrsstatus.py; sourceTree = "<group>"; };
65B36720121C2620003EAD18 /* altitudeactual.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = altitudeactual.cpp; sourceTree = "<group>"; };
65B36721121C2620003EAD18 /* altitudeactual.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = altitudeactual.h; sourceTree = "<group>"; };
65B36722121C2620003EAD18 /* altitudeactual.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = altitudeactual.py; sourceTree = "<group>"; };
65B36723121C2620003EAD18 /* attitudeactual.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = attitudeactual.cpp; sourceTree = "<group>"; };
65B36724121C2620003EAD18 /* attitudeactual.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = attitudeactual.h; sourceTree = "<group>"; };
65B36725121C2620003EAD18 /* attitudeactual.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = attitudeactual.py; sourceTree = "<group>"; };
65B36726121C2620003EAD18 /* attitudedesired.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = attitudedesired.cpp; sourceTree = "<group>"; };
65B36727121C2620003EAD18 /* attitudedesired.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = attitudedesired.h; sourceTree = "<group>"; };
65B36728121C2620003EAD18 /* attitudedesired.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = attitudedesired.py; sourceTree = "<group>"; };
65B36729121C2620003EAD18 /* attituderaw.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = attituderaw.cpp; sourceTree = "<group>"; };
65B3672A121C2620003EAD18 /* attituderaw.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = attituderaw.h; sourceTree = "<group>"; };
65B3672B121C2620003EAD18 /* attituderaw.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = attituderaw.py; sourceTree = "<group>"; };
65B3672C121C2620003EAD18 /* attitudesettings.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = attitudesettings.cpp; sourceTree = "<group>"; };
65B3672D121C2620003EAD18 /* attitudesettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = attitudesettings.h; sourceTree = "<group>"; };
65B3672E121C2620003EAD18 /* attitudesettings.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = attitudesettings.py; sourceTree = "<group>"; };
65B3672F121C2620003EAD18 /* exampleobject1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = exampleobject1.cpp; sourceTree = "<group>"; };
65B36730121C2620003EAD18 /* exampleobject1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = exampleobject1.h; sourceTree = "<group>"; };
65B36731121C2620003EAD18 /* exampleobject1.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = exampleobject1.py; sourceTree = "<group>"; };
65B36732121C2620003EAD18 /* exampleobject2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = exampleobject2.cpp; sourceTree = "<group>"; };
65B36733121C2620003EAD18 /* exampleobject2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = exampleobject2.h; sourceTree = "<group>"; };
65B36734121C2620003EAD18 /* exampleobject2.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = exampleobject2.py; sourceTree = "<group>"; };
65B36735121C2620003EAD18 /* examplesettings.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = examplesettings.cpp; sourceTree = "<group>"; };
65B36736121C2620003EAD18 /* examplesettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = examplesettings.h; sourceTree = "<group>"; };
65B36737121C2620003EAD18 /* examplesettings.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = examplesettings.py; sourceTree = "<group>"; };
65B36738121C2620003EAD18 /* flightbatterystate.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = flightbatterystate.cpp; sourceTree = "<group>"; };
65B36739121C2620003EAD18 /* flightbatterystate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = flightbatterystate.h; sourceTree = "<group>"; };
65B3673A121C2620003EAD18 /* flightbatterystate.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = flightbatterystate.py; sourceTree = "<group>"; };
65B3673B121C2620003EAD18 /* flightsituationactual.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = flightsituationactual.cpp; sourceTree = "<group>"; };
65B3673C121C2620003EAD18 /* flightsituationactual.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = flightsituationactual.h; sourceTree = "<group>"; };
65B3673D121C2620003EAD18 /* flightsituationactual.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = flightsituationactual.py; sourceTree = "<group>"; };
65B3673E121C2620003EAD18 /* flighttelemetrystats.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = flighttelemetrystats.cpp; sourceTree = "<group>"; };
65B3673F121C2620003EAD18 /* flighttelemetrystats.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = flighttelemetrystats.h; sourceTree = "<group>"; };
65B36740121C2620003EAD18 /* flighttelemetrystats.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = flighttelemetrystats.py; sourceTree = "<group>"; };
65B36741121C2620003EAD18 /* gcstelemetrystats.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gcstelemetrystats.cpp; sourceTree = "<group>"; };
65B36742121C2620003EAD18 /* gcstelemetrystats.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gcstelemetrystats.h; sourceTree = "<group>"; };
65B36743121C2620003EAD18 /* gcstelemetrystats.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = gcstelemetrystats.py; sourceTree = "<group>"; };
65B36744121C2620003EAD18 /* manualcontrolcommand.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = manualcontrolcommand.cpp; sourceTree = "<group>"; };
65B36745121C2620003EAD18 /* manualcontrolcommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = manualcontrolcommand.h; sourceTree = "<group>"; };
65B36746121C2620003EAD18 /* manualcontrolcommand.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = manualcontrolcommand.py; sourceTree = "<group>"; };
65B36747121C2620003EAD18 /* manualcontrolsettings.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = manualcontrolsettings.cpp; sourceTree = "<group>"; };
65B36748121C2620003EAD18 /* manualcontrolsettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = manualcontrolsettings.h; sourceTree = "<group>"; };
65B36749121C2620003EAD18 /* manualcontrolsettings.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = manualcontrolsettings.py; sourceTree = "<group>"; };
65B3674A121C2620003EAD18 /* navigationdesired.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = navigationdesired.cpp; sourceTree = "<group>"; };
65B3674B121C2620003EAD18 /* navigationdesired.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = navigationdesired.h; sourceTree = "<group>"; };
65B3674C121C2620003EAD18 /* navigationdesired.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = navigationdesired.py; sourceTree = "<group>"; };
65B3674D121C2620003EAD18 /* navigationsettings.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = navigationsettings.cpp; sourceTree = "<group>"; };
65B3674E121C2620003EAD18 /* navigationsettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = navigationsettings.h; sourceTree = "<group>"; };
65B3674F121C2620003EAD18 /* navigationsettings.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = navigationsettings.py; sourceTree = "<group>"; };
65B36750121C2620003EAD18 /* objectpersistence.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = objectpersistence.cpp; sourceTree = "<group>"; };
65B36751121C2620003EAD18 /* objectpersistence.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = objectpersistence.h; sourceTree = "<group>"; };
65B36752121C2620003EAD18 /* objectpersistence.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = objectpersistence.py; sourceTree = "<group>"; };
65B36753121C2620003EAD18 /* positionactual.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = positionactual.cpp; sourceTree = "<group>"; };
65B36754121C2620003EAD18 /* positionactual.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = positionactual.h; sourceTree = "<group>"; };
65B36755121C2620003EAD18 /* positionactual.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = positionactual.py; sourceTree = "<group>"; };
65B36756121C2620003EAD18 /* stabilizationsettings.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = stabilizationsettings.cpp; sourceTree = "<group>"; };
65B36757121C2620003EAD18 /* stabilizationsettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stabilizationsettings.h; sourceTree = "<group>"; };
65B36758121C2620003EAD18 /* stabilizationsettings.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = stabilizationsettings.py; sourceTree = "<group>"; };
65B36759121C2620003EAD18 /* systemalarms.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = systemalarms.cpp; sourceTree = "<group>"; };
65B3675A121C2620003EAD18 /* systemalarms.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = systemalarms.h; sourceTree = "<group>"; };
65B3675B121C2620003EAD18 /* systemalarms.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = systemalarms.py; sourceTree = "<group>"; };
65B3675C121C2620003EAD18 /* systemsettings.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = systemsettings.cpp; sourceTree = "<group>"; };
65B3675D121C2620003EAD18 /* systemsettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = systemsettings.h; sourceTree = "<group>"; };
65B3675E121C2620003EAD18 /* systemsettings.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = systemsettings.py; sourceTree = "<group>"; };
65B3675F121C2620003EAD18 /* systemstats.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = systemstats.cpp; sourceTree = "<group>"; };
65B36760121C2620003EAD18 /* systemstats.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = systemstats.h; sourceTree = "<group>"; };
65B36761121C2620003EAD18 /* systemstats.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = systemstats.py; sourceTree = "<group>"; };
65B36762121C2620003EAD18 /* telemetrysettings.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = telemetrysettings.cpp; sourceTree = "<group>"; };
65B36763121C2620003EAD18 /* telemetrysettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = telemetrysettings.h; sourceTree = "<group>"; };
65B36764121C2620003EAD18 /* telemetrysettings.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = telemetrysettings.py; sourceTree = "<group>"; };
65B36766121C2620003EAD18 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = "<group>"; };
65B36767121C2620003EAD18 /* uavobjectstest.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uavobjectstest.cpp; sourceTree = "<group>"; };
65B36768121C2620003EAD18 /* uavobjectstest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uavobjectstest.h; sourceTree = "<group>"; };
65B36769121C2620003EAD18 /* uavobjectstest.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = uavobjectstest.pro; sourceTree = "<group>"; };
65B3676A121C2620003EAD18 /* uavdataobject.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uavdataobject.cpp; sourceTree = "<group>"; };
65B3676B121C2620003EAD18 /* uavdataobject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uavdataobject.h; sourceTree = "<group>"; };
65B3676C121C2620003EAD18 /* uavmetaobject.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uavmetaobject.cpp; sourceTree = "<group>"; };
65B3676D121C2620003EAD18 /* uavmetaobject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uavmetaobject.h; sourceTree = "<group>"; };
65B3676E121C2620003EAD18 /* uavobject.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uavobject.cpp; sourceTree = "<group>"; };
65B3676F121C2620003EAD18 /* uavobject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uavobject.h; sourceTree = "<group>"; };
65B36770121C2620003EAD18 /* uavobject.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = uavobject.py; sourceTree = "<group>"; };
65B36771121C2620003EAD18 /* uavobjectfield.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uavobjectfield.cpp; sourceTree = "<group>"; };
65B36772121C2620003EAD18 /* uavobjectfield.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uavobjectfield.h; sourceTree = "<group>"; };
65B36773121C2620003EAD18 /* uavobjectmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uavobjectmanager.cpp; sourceTree = "<group>"; };
65B36774121C2620003EAD18 /* uavobjectmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uavobjectmanager.h; sourceTree = "<group>"; };
65B36775121C2620003EAD18 /* UAVObjects.pluginspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UAVObjects.pluginspec; sourceTree = "<group>"; };
65B36776121C2620003EAD18 /* uavobjects.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = uavobjects.pri; sourceTree = "<group>"; };
65B36777121C2620003EAD18 /* uavobjects.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = uavobjects.pro; sourceTree = "<group>"; };
65B36778121C2620003EAD18 /* uavobjects_dependencies.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = uavobjects_dependencies.pri; sourceTree = "<group>"; };
65B36779121C2620003EAD18 /* uavobjects_global.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uavobjects_global.h; sourceTree = "<group>"; };
65B3677A121C2620003EAD18 /* uavobjectsinit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uavobjectsinit.cpp; sourceTree = "<group>"; };
65B3677B121C2620003EAD18 /* uavobjectsinit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uavobjectsinit.h; sourceTree = "<group>"; };
65B3677C121C2620003EAD18 /* uavobjectsinittemplate.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uavobjectsinittemplate.cpp; sourceTree = "<group>"; };
65B3677D121C2620003EAD18 /* uavobjectsplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uavobjectsplugin.cpp; sourceTree = "<group>"; };
65B3677E121C2620003EAD18 /* uavobjectsplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uavobjectsplugin.h; sourceTree = "<group>"; };
65B3677F121C2620003EAD18 /* uavobjecttemplate.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uavobjecttemplate.cpp; sourceTree = "<group>"; };
65B36780121C2620003EAD18 /* uavobjecttemplate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uavobjecttemplate.h; sourceTree = "<group>"; };
65B36781121C2620003EAD18 /* uavobjecttemplate.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = uavobjecttemplate.py; sourceTree = "<group>"; };
65B36783121C2620003EAD18 /* telemetry.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = telemetry.cpp; sourceTree = "<group>"; };
65B36784121C2620003EAD18 /* telemetry.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = telemetry.h; sourceTree = "<group>"; };
65B36785121C2620003EAD18 /* telemetrymanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = telemetrymanager.cpp; sourceTree = "<group>"; };
65B36786121C2620003EAD18 /* telemetrymanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = telemetrymanager.h; sourceTree = "<group>"; };
65B36787121C2620003EAD18 /* telemetrymonitor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = telemetrymonitor.cpp; sourceTree = "<group>"; };
65B36788121C2620003EAD18 /* telemetrymonitor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = telemetrymonitor.h; sourceTree = "<group>"; };
65B36789121C2620003EAD18 /* uavtalk.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uavtalk.cpp; sourceTree = "<group>"; };
65B3678A121C2620003EAD18 /* uavtalk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uavtalk.h; sourceTree = "<group>"; };
65B3678B121C2620003EAD18 /* UAVTalk.pluginspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = UAVTalk.pluginspec; sourceTree = "<group>"; };
65B3678C121C2620003EAD18 /* uavtalk.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = uavtalk.pri; sourceTree = "<group>"; };
65B3678D121C2620003EAD18 /* uavtalk.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = uavtalk.pro; sourceTree = "<group>"; };
65B3678E121C2620003EAD18 /* uavtalk_dependencies.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = uavtalk_dependencies.pri; sourceTree = "<group>"; };
65B3678F121C2620003EAD18 /* uavtalk_global.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uavtalk_global.h; sourceTree = "<group>"; };
65B36790121C2620003EAD18 /* uavtalkplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uavtalkplugin.cpp; sourceTree = "<group>"; };
65B36791121C2620003EAD18 /* uavtalkplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uavtalkplugin.h; sourceTree = "<group>"; };
65B36793121C2620003EAD18 /* Uploader.pluginspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Uploader.pluginspec; sourceTree = "<group>"; };
65B36794121C2620003EAD18 /* uploader.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = uploader.pro; sourceTree = "<group>"; };
65B36795121C2620003EAD18 /* uploadergadget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uploadergadget.cpp; sourceTree = "<group>"; };
65B36796121C2620003EAD18 /* uploadergadget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uploadergadget.h; sourceTree = "<group>"; };
65B36797121C2620003EAD18 /* uploadergadgetconfiguration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uploadergadgetconfiguration.cpp; sourceTree = "<group>"; };
65B36798121C2620003EAD18 /* uploadergadgetconfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uploadergadgetconfiguration.h; sourceTree = "<group>"; };
65B36799121C2620003EAD18 /* uploadergadgetfactory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uploadergadgetfactory.cpp; sourceTree = "<group>"; };
65B3679A121C2620003EAD18 /* uploadergadgetfactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uploadergadgetfactory.h; sourceTree = "<group>"; };
65B3679B121C2620003EAD18 /* uploadergadgetoptionspage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uploadergadgetoptionspage.cpp; sourceTree = "<group>"; };
65B3679C121C2620003EAD18 /* uploadergadgetoptionspage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uploadergadgetoptionspage.h; sourceTree = "<group>"; };
65B3679D121C2620003EAD18 /* uploadergadgetwidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uploadergadgetwidget.cpp; sourceTree = "<group>"; };
65B3679E121C2620003EAD18 /* uploadergadgetwidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uploadergadgetwidget.h; sourceTree = "<group>"; };
65B3679F121C2620003EAD18 /* uploaderplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = uploaderplugin.cpp; sourceTree = "<group>"; };
65B367A0121C2620003EAD18 /* uploaderplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uploaderplugin.h; sourceTree = "<group>"; };
65B367A2121C2620003EAD18 /* communitywelcomepage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = communitywelcomepage.cpp; sourceTree = "<group>"; };
65B367A3121C2620003EAD18 /* communitywelcomepage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = communitywelcomepage.h; sourceTree = "<group>"; };
65B367A4121C2620003EAD18 /* communitywelcomepagewidget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = communitywelcomepagewidget.cpp; sourceTree = "<group>"; };
65B367A5121C2620003EAD18 /* communitywelcomepagewidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = communitywelcomepagewidget.h; sourceTree = "<group>"; };
65B367A6121C2620003EAD18 /* communitywelcomepagewidget.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = communitywelcomepagewidget.ui; sourceTree = "<group>"; };
65B367A8121C2620003EAD18 /* arrow-left.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "arrow-left.png"; sourceTree = "<group>"; };
65B367A9121C2620003EAD18 /* arrow-right.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "arrow-right.png"; sourceTree = "<group>"; };
65B367AA121C2620003EAD18 /* background_center_frame.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = background_center_frame.png; sourceTree = "<group>"; };
65B367AB121C2620003EAD18 /* btn_26.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_26.png; sourceTree = "<group>"; };
65B367AC121C2620003EAD18 /* btn_26_hover.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_26_hover.png; sourceTree = "<group>"; };
65B367AD121C2620003EAD18 /* btn_26_pressed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_26_pressed.png; sourceTree = "<group>"; };
65B367AE121C2620003EAD18 /* btn_27.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_27.png; sourceTree = "<group>"; };
65B367AF121C2620003EAD18 /* btn_27_hover.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_27_hover.png; sourceTree = "<group>"; };
65B367B0121C2620003EAD18 /* center_frame_header.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = center_frame_header.png; sourceTree = "<group>"; };
65B367B1121C2620003EAD18 /* combobox_arrow.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = combobox_arrow.png; sourceTree = "<group>"; };
65B367B2121C2620003EAD18 /* feedback-bar-background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "feedback-bar-background.png"; sourceTree = "<group>"; };
65B367B3121C2620003EAD18 /* feedback_arrow.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = feedback_arrow.png; sourceTree = "<group>"; };
65B367B4121C2620003EAD18 /* feedback_arrow_hover.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = feedback_arrow_hover.png; sourceTree = "<group>"; };
65B367B5121C2620003EAD18 /* list_bullet_arrow.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = list_bullet_arrow.png; sourceTree = "<group>"; };
65B367B6121C2620003EAD18 /* mode_project.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = mode_project.png; sourceTree = "<group>"; };
65B367B7121C2620003EAD18 /* nokia_logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = nokia_logo.png; sourceTree = "<group>"; };
65B367B8121C2620003EAD18 /* product_logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = product_logo.png; sourceTree = "<group>"; };
65B367B9121C2620003EAD18 /* qt_logo.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = qt_logo.png; sourceTree = "<group>"; };
65B367BA121C2620003EAD18 /* rc_combined.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = rc_combined.png; sourceTree = "<group>"; };
65B367BB121C2620003EAD18 /* rssfetcher.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rssfetcher.cpp; sourceTree = "<group>"; };
65B367BC121C2620003EAD18 /* rssfetcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rssfetcher.h; sourceTree = "<group>"; };
65B367BD121C2620003EAD18 /* Welcome.pluginspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Welcome.pluginspec; sourceTree = "<group>"; };
65B367BE121C2620003EAD18 /* welcome.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = welcome.pri; sourceTree = "<group>"; };
65B367BF121C2620003EAD18 /* welcome.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = welcome.pro; sourceTree = "<group>"; };
65B367C0121C2620003EAD18 /* welcome.qrc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = welcome.qrc; sourceTree = "<group>"; };
65B367C1121C2620003EAD18 /* welcome_dependencies.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = welcome_dependencies.pri; sourceTree = "<group>"; };
65B367C2121C2620003EAD18 /* welcome_global.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = welcome_global.h; sourceTree = "<group>"; };
65B367C3121C2620003EAD18 /* welcomemode.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = welcomemode.cpp; sourceTree = "<group>"; };
65B367C4121C2620003EAD18 /* welcomemode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = welcomemode.h; sourceTree = "<group>"; };
65B367C5121C2620003EAD18 /* welcomemode.ui */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = welcomemode.ui; sourceTree = "<group>"; };
65B367C6121C2620003EAD18 /* welcomeplugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = welcomeplugin.cpp; sourceTree = "<group>"; };
65B367C7121C2620003EAD18 /* welcomeplugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = welcomeplugin.h; sourceTree = "<group>"; };
65B367C8121C2620003EAD18 /* rpath.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = rpath.pri; sourceTree = "<group>"; };
65B367CA121C2620003EAD18 /* namespace_global.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = namespace_global.h; sourceTree = "<group>"; };
65B367CC121C2620003EAD18 /* namespace.patch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = namespace.patch; sourceTree = "<group>"; };
65B367CD121C2620003EAD18 /* qtlockedfile.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qtlockedfile.cpp; sourceTree = "<group>"; };
65B367CE121C2620003EAD18 /* qtlockedfile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qtlockedfile.h; sourceTree = "<group>"; };
65B367CF121C2620003EAD18 /* qtlockedfile.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = qtlockedfile.pri; sourceTree = "<group>"; };
65B367D0121C2620003EAD18 /* qtlockedfile_unix.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qtlockedfile_unix.cpp; sourceTree = "<group>"; };
65B367D1121C2620003EAD18 /* qtlockedfile_win.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qtlockedfile_win.cpp; sourceTree = "<group>"; };
65B367D2121C2620003EAD18 /* README.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README.txt; sourceTree = "<group>"; };
65B367D4121C2620003EAD18 /* namespace.patch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = namespace.patch; sourceTree = "<group>"; };
65B367D5121C2620003EAD18 /* qtlocalpeer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qtlocalpeer.cpp; sourceTree = "<group>"; };
65B367D6121C2620003EAD18 /* qtlocalpeer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qtlocalpeer.h; sourceTree = "<group>"; };
65B367D7121C2620003EAD18 /* qtsingleapplication.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qtsingleapplication.cpp; sourceTree = "<group>"; };
65B367D8121C2620003EAD18 /* qtsingleapplication.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qtsingleapplication.h; sourceTree = "<group>"; };
65B367D9121C2620003EAD18 /* qtsingleapplication.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = qtsingleapplication.pri; sourceTree = "<group>"; };
65B367DA121C2620003EAD18 /* qtsinglecoreapplication.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = qtsinglecoreapplication.cpp; sourceTree = "<group>"; };
65B367DB121C2620003EAD18 /* qtsinglecoreapplication.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = qtsinglecoreapplication.h; sourceTree = "<group>"; };
65B367DC121C2620003EAD18 /* qtsinglecoreapplication.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = qtsinglecoreapplication.pri; sourceTree = "<group>"; };
65B367DD121C2620003EAD18 /* README.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README.txt; sourceTree = "<group>"; };
65B367DF121C2620003EAD18 /* interface_wrap_helpers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = interface_wrap_helpers.h; sourceTree = "<group>"; };
65B367E0121C2620003EAD18 /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README; sourceTree = "<group>"; };
65B367E1121C2620003EAD18 /* scriptwrapper.pri */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = scriptwrapper.pri; sourceTree = "<group>"; };
65B367E2121C2620003EAD18 /* wrap_helpers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wrap_helpers.h; sourceTree = "<group>"; };
65B367E4121C2620003EAD18 /* actuatorcommand.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = actuatorcommand.xml; sourceTree = "<group>"; };
65B367E5121C2620003EAD18 /* actuatordesired.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = actuatordesired.xml; sourceTree = "<group>"; };
65B367E6121C2620003EAD18 /* actuatorsettings.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = actuatorsettings.xml; sourceTree = "<group>"; };
65B367E7121C2620003EAD18 /* ahrsstatus.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = ahrsstatus.xml; sourceTree = "<group>"; };
65B367E8121C2620003EAD18 /* altitudeactual.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = altitudeactual.xml; sourceTree = "<group>"; };
65B367E9121C2620003EAD18 /* attitudeactual.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = attitudeactual.xml; sourceTree = "<group>"; };
65B367EA121C2620003EAD18 /* attitudedesired.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = attitudedesired.xml; sourceTree = "<group>"; };
65B367EB121C2620003EAD18 /* attituderaw.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = attituderaw.xml; sourceTree = "<group>"; };
65B367EC121C2620003EAD18 /* attitudesettings.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = attitudesettings.xml; sourceTree = "<group>"; };
65B367ED121C2620003EAD18 /* exampleobject1.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = exampleobject1.xml; sourceTree = "<group>"; };
65B367EE121C2620003EAD18 /* exampleobject2.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = exampleobject2.xml; sourceTree = "<group>"; };
65B367EF121C2620003EAD18 /* examplesettings.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = examplesettings.xml; sourceTree = "<group>"; };
65B367F0121C2620003EAD18 /* flightbatterystate.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = flightbatterystate.xml; sourceTree = "<group>"; };
65B367F1121C2620003EAD18 /* flightsituationactual.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = flightsituationactual.xml; sourceTree = "<group>"; };
65B367F2121C2620003EAD18 /* flighttelemetrystats.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = flighttelemetrystats.xml; sourceTree = "<group>"; };
65B367F3121C2620003EAD18 /* gcstelemetrystats.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = gcstelemetrystats.xml; sourceTree = "<group>"; };
65B367F4121C2620003EAD18 /* manualcontrolcommand.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = manualcontrolcommand.xml; sourceTree = "<group>"; };
65B367F5121C2620003EAD18 /* manualcontrolsettings.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = manualcontrolsettings.xml; sourceTree = "<group>"; };
65B367F6121C2620003EAD18 /* navigationdesired.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = navigationdesired.xml; sourceTree = "<group>"; };
65B367F7121C2620003EAD18 /* navigationsettings.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = navigationsettings.xml; sourceTree = "<group>"; };
65B367F8121C2620003EAD18 /* objectpersistence.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = objectpersistence.xml; sourceTree = "<group>"; };
65B367F9121C2620003EAD18 /* positionactual.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = positionactual.xml; sourceTree = "<group>"; };
65B367FA121C2620003EAD18 /* stabilizationsettings.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = stabilizationsettings.xml; sourceTree = "<group>"; };
65B367FB121C2620003EAD18 /* systemalarms.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = systemalarms.xml; sourceTree = "<group>"; };
65B367FC121C2620003EAD18 /* systemsettings.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = systemsettings.xml; sourceTree = "<group>"; };
65B367FD121C2620003EAD18 /* systemstats.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = systemstats.xml; sourceTree = "<group>"; };
65B367FE121C2620003EAD18 /* telemetrysettings.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = telemetrysettings.xml; sourceTree = "<group>"; };
65B367FF121C2620003EAD18 /* src.pro */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = src.pro; sourceTree = "<group>"; };
65B7E6AD120DF1E2000C1123 /* ahrs_fsm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ahrs_fsm.c; path = ../../AHRS/ahrs_fsm.c; sourceTree = SOURCE_ROOT; };
65B7E6AE120DF1E2000C1123 /* ahrs.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ahrs.c; path = ../../AHRS/ahrs.c; sourceTree = SOURCE_ROOT; };
65B7E6B0120DF1E2000C1123 /* ahrs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ahrs.h; sourceTree = "<group>"; };
@ -357,6 +2893,7 @@
65A2C7ED11E2A33D00D0391E /* PiOS.posix */,
C6A0FF2B0290797F04C91782 /* Documentation */,
1AB674ADFE9D54B511CA2CBB /* Products */,
65B35D7D121C261E003EAD18 /* ground */,
);
name = OpenPilotOSX;
sourceTree = "<group>";
@ -520,6 +3057,3782 @@
path = ../../PiOS.posix/posix/Libraries/FreeRTOS/Source/portable/MemMang;
sourceTree = SOURCE_ROOT;
};
65B35D7D121C261E003EAD18 /* ground */ = {
isa = PBXGroup;
children = (
65B35D7E121C261E003EAD18 /* bin */,
65B35D81121C261E003EAD18 /* openpilotgcs.pri */,
65B35D82121C261E003EAD18 /* openpilotgcs.pro */,
65B35D83121C261E003EAD18 /* openpilotgcs.pro.user */,
65B35D84121C261E003EAD18 /* share */,
65B35E1E121C261E003EAD18 /* src */,
);
name = ground;
path = ../../../ground;
sourceTree = SOURCE_ROOT;
};
65B35D7E121C261E003EAD18 /* bin */ = {
isa = PBXGroup;
children = (
65B35D7F121C261E003EAD18 /* bin.pro */,
65B35D80121C261E003EAD18 /* openpilotgcs */,
);
path = bin;
sourceTree = "<group>";
};
65B35D84121C261E003EAD18 /* share */ = {
isa = PBXGroup;
children = (
65B35D85121C261E003EAD18 /* openpilotgcs */,
65B35E1D121C261E003EAD18 /* share.pro */,
);
path = share;
sourceTree = "<group>";
};
65B35D85121C261E003EAD18 /* openpilotgcs */ = {
isa = PBXGroup;
children = (
65B35D86121C261E003EAD18 /* diagrams */,
65B35D89121C261E003EAD18 /* dials */,
65B35D9C121C261E003EAD18 /* mapicons */,
65B35D9F121C261E003EAD18 /* models */,
65B35DA7121C261E003EAD18 /* pfd */,
65B35DAA121C261E003EAD18 /* sounds */,
65B35E14121C261E003EAD18 /* translations */,
);
path = openpilotgcs;
sourceTree = "<group>";
};
65B35D86121C261E003EAD18 /* diagrams */ = {
isa = PBXGroup;
children = (
65B35D87121C261E003EAD18 /* default */,
);
path = diagrams;
sourceTree = "<group>";
};
65B35D87121C261E003EAD18 /* default */ = {
isa = PBXGroup;
children = (
65B35D88121C261E003EAD18 /* system-health.svg */,
);
path = default;
sourceTree = "<group>";
};
65B35D89121C261E003EAD18 /* dials */ = {
isa = PBXGroup;
children = (
65B35D8A121C261E003EAD18 /* default */,
65B35D98121C261E003EAD18 /* deluxe */,
);
path = dials;
sourceTree = "<group>";
};
65B35D8A121C261E003EAD18 /* default */ = {
isa = PBXGroup;
children = (
65B35D8B121C261E003EAD18 /* altimeter.svg */,
65B35D8C121C261E003EAD18 /* attitude.svg */,
65B35D8D121C261E003EAD18 /* compass.svg */,
65B35D8E121C261E003EAD18 /* flightmode-status.svg */,
65B35D8F121C261E003EAD18 /* gps-signal.svg */,
65B35D90121C261E003EAD18 /* gps-status.svg */,
65B35D91121C261E003EAD18 /* lineardial-horizontal.svg */,
65B35D92121C261E003EAD18 /* lineardial-vertical.svg */,
65B35D93121C261E003EAD18 /* Readme.txt */,
65B35D94121C261E003EAD18 /* speed.svg */,
65B35D95121C261E003EAD18 /* textonly.svg */,
65B35D96121C261E003EAD18 /* thermometer.svg */,
65B35D97121C261E003EAD18 /* vsi.svg */,
);
path = default;
sourceTree = "<group>";
};
65B35D98121C261E003EAD18 /* deluxe */ = {
isa = PBXGroup;
children = (
65B35D99121C261E003EAD18 /* altimeter.svg */,
65B35D9A121C261E003EAD18 /* speed.svg */,
65B35D9B121C261E003EAD18 /* vsi.svg */,
);
path = deluxe;
sourceTree = "<group>";
};
65B35D9C121C261E003EAD18 /* mapicons */ = {
isa = PBXGroup;
children = (
65B35D9D121C261E003EAD18 /* easystar.png */,
65B35D9E121C261E003EAD18 /* quad.png */,
);
path = mapicons;
sourceTree = "<group>";
};
65B35D9F121C261E003EAD18 /* models */ = {
isa = PBXGroup;
children = (
65B35DA0121C261E003EAD18 /* Easystar */,
);
path = models;
sourceTree = "<group>";
};
65B35DA0121C261E003EAD18 /* Easystar */ = {
isa = PBXGroup;
children = (
65B35DA1121C261E003EAD18 /* EasyS.jpg */,
65B35DA2121C261E003EAD18 /* EasyStar.3ds */,
65B35DA3121C261E003EAD18 /* V1White.jpg */,
65B35DA4121C261E003EAD18 /* V2White.jpg */,
65B35DA5121C261E003EAD18 /* White.jpg */,
65B35DA6121C261E003EAD18 /* wing.jpg */,
);
path = Easystar;
sourceTree = "<group>";
};
65B35DA7121C261E003EAD18 /* pfd */ = {
isa = PBXGroup;
children = (
65B35DA8121C261E003EAD18 /* default */,
);
path = pfd;
sourceTree = "<group>";
};
65B35DA8121C261E003EAD18 /* default */ = {
isa = PBXGroup;
children = (
65B35DA9121C261E003EAD18 /* pfd.svg */,
);
path = default;
sourceTree = "<group>";
};
65B35DAA121C261E003EAD18 /* sounds */ = {
isa = PBXGroup;
children = (
65B35DAB121C261E003EAD18 /* Complete sound set.txt */,
65B35DAC121C261E003EAD18 /* default */,
65B35E13121C261E003EAD18 /* License.txt */,
);
path = sounds;
sourceTree = "<group>";
};
65B35DAC121C261E003EAD18 /* default */ = {
isa = PBXGroup;
children = (
65B35DAD121C261E003EAD18 /* 0.wav */,
65B35DAE121C261E003EAD18 /* 1.wav */,
65B35DAF121C261E003EAD18 /* 10.wav */,
65B35DB0121C261E003EAD18 /* 100.wav */,
65B35DB1121C261E003EAD18 /* 1000.wav */,
65B35DB2121C261E003EAD18 /* 11.wav */,
65B35DB3121C261E003EAD18 /* 12.wav */,
65B35DB4121C261E003EAD18 /* 13.wav */,
65B35DB5121C261E003EAD18 /* 14.wav */,
65B35DB6121C261E003EAD18 /* 15.wav */,
65B35DB7121C261E003EAD18 /* 16.wav */,
65B35DB8121C261E003EAD18 /* 17.wav */,
65B35DB9121C261E003EAD18 /* 18.wav */,
65B35DBA121C261E003EAD18 /* 19.wav */,
65B35DBB121C261E003EAD18 /* 2.wav */,
65B35DBC121C261E003EAD18 /* 20.wav */,
65B35DBD121C261E003EAD18 /* 3.wav */,
65B35DBE121C261E003EAD18 /* 30.wav */,
65B35DBF121C261E003EAD18 /* 4.wav */,
65B35DC0121C261E003EAD18 /* 40.wav */,
65B35DC1121C261E003EAD18 /* 5.wav */,
65B35DC2121C261E003EAD18 /* 50.wav */,
65B35DC3121C261E003EAD18 /* 6.wav */,
65B35DC4121C261E003EAD18 /* 60.wav */,
65B35DC5121C261E003EAD18 /* 7.wav */,
65B35DC6121C261E003EAD18 /* 70.wav */,
65B35DC7121C261E003EAD18 /* 8.wav */,
65B35DC8121C261E003EAD18 /* 80.wav */,
65B35DC9121C261E003EAD18 /* 9.wav */,
65B35DCA121C261E003EAD18 /* 90.wav */,
65B35DCB121C261E003EAD18 /* aborted.wav */,
65B35DCC121C261E003EAD18 /* active.wav */,
65B35DCD121C261E003EAD18 /* alarmsound.wav */,
65B35DCE121C261E003EAD18 /* alert.wav */,
65B35DCF121C261E003EAD18 /* altitude.wav */,
65B35DD0121C261E003EAD18 /* amps.wav */,
65B35DD1121C261E003EAD18 /* aquired.wav */,
65B35DD2121C261E003EAD18 /* auto flight.wav */,
65B35DD3121C261E003EAD18 /* battery.wav */,
65B35DD4121C261E003EAD18 /* beepsound.wav */,
65B35DD5121C261E003EAD18 /* camera.wav */,
65B35DD6121C261E003EAD18 /* cancelled.wav */,
65B35DD7121C261E003EAD18 /* changed.wav */,
65B35DD8121C261E003EAD18 /* circle position.wav */,
65B35DD9121C261E003EAD18 /* cleared.wav */,
65B35DDA121C261E003EAD18 /* complete.wav */,
65B35DDB121C261E003EAD18 /* connected.wav */,
65B35DDC121C261E003EAD18 /* connection.wav */,
65B35DDD121C261E003EAD18 /* control.wav */,
65B35DDE121C261E003EAD18 /* disabled.wav */,
65B35DDF121C261E003EAD18 /* disconnected.wav */,
65B35DE0121C261E003EAD18 /* feet.wav */,
65B35DE1121C261E003EAD18 /* figure eight.wav */,
65B35DE2121C261E003EAD18 /* flight.wav */,
65B35DE3121C261E003EAD18 /* geofence.wav */,
65B35DE4121C261E003EAD18 /* gps.wav */,
65B35DE5121C261E003EAD18 /* ground station.wav */,
65B35DE6121C261E003EAD18 /* heading.wav */,
65B35DE7121C261E003EAD18 /* height.wav */,
65B35DE8121C261E003EAD18 /* high.wav */,
65B35DE9121C261E003EAD18 /* hippodrome.wav */,
65B35DEA121C261E003EAD18 /* hold position.wav */,
65B35DEB121C261E003EAD18 /* home location.wav */,
65B35DEC121C261E003EAD18 /* initialised.wav */,
65B35DED121C261E003EAD18 /* initiated.wav */,
65B35DEE121C261E003EAD18 /* KPH.wav */,
65B35DEF121C261E003EAD18 /* landing.wav */,
65B35DF0121C261E003EAD18 /* launch.wav */,
65B35DF1121C261E003EAD18 /* left.wav */,
65B35DF2121C261E003EAD18 /* logging.wav */,
65B35DF3121C261E003EAD18 /* lost.wav */,
65B35DF4121C261E003EAD18 /* low altitude.wav */,
65B35DF5121C261E003EAD18 /* low battery.wav */,
65B35DF6121C261E003EAD18 /* low gps quality.wav */,
65B35DF7121C261E003EAD18 /* manual flight.wav */,
65B35DF8121C261E003EAD18 /* maximum.wav */,
65B35DF9121C261E003EAD18 /* meters.wav */,
65B35DFA121C261E003EAD18 /* minimum.wav */,
65B35DFB121C261E003EAD18 /* mode.wav */,
65B35DFC121C261E003EAD18 /* MPH.wav */,
65B35DFD121C261E003EAD18 /* navigation.wav */,
65B35DFE121C261E003EAD18 /* openpilot.wav */,
65B35DFF121C261E003EAD18 /* point.wav */,
65B35E00121C261E003EAD18 /* range.wav */,
65B35E01121C261E003EAD18 /* reached.wav */,
65B35E02121C261E003EAD18 /* ready for flight.wav */,
65B35E03121C261E003EAD18 /* return home.wav */,
65B35E04121C261E003EAD18 /* right.wav */,
65B35E05121C261E003EAD18 /* set.wav */,
65B35E06121C261E003EAD18 /* speed.wav */,
65B35E07121C261E003EAD18 /* stabilization.wav */,
65B35E08121C261E003EAD18 /* started.wav */,
65B35E09121C261E003EAD18 /* stopped.wav */,
65B35E0A121C261E003EAD18 /* takeoff.wav */,
65B35E0B121C261E003EAD18 /* telemetry.wav */,
65B35E0C121C261E003EAD18 /* time.wav */,
65B35E0D121C261E003EAD18 /* triggered.wav */,
65B35E0E121C261E003EAD18 /* uav.wav */,
65B35E0F121C261E003EAD18 /* volts.wav */,
65B35E10121C261E003EAD18 /* warning.wav */,
65B35E11121C261E003EAD18 /* waypoint.wav */,
65B35E12121C261E003EAD18 /* whoopsound.wav */,
);
path = default;
sourceTree = "<group>";
};
65B35E14121C261E003EAD18 /* translations */ = {
isa = PBXGroup;
children = (
65B35E15121C261E003EAD18 /* extract-mimetypes.xq */,
65B35E16121C261E003EAD18 /* extract-mimetypes.xq.in */,
65B35E17121C261E003EAD18 /* openpilotgcs_de.ts */,
65B35E18121C261E003EAD18 /* openpilotgcs_es.ts */,
65B35E19121C261E003EAD18 /* openpilotgcs_fr.ts */,
65B35E1A121C261E003EAD18 /* openpilotgcs_it.ts */,
65B35E1B121C261E003EAD18 /* Readme.txt */,
65B35E1C121C261E003EAD18 /* translations.pro */,
);
path = translations;
sourceTree = "<group>";
};
65B35E1E121C261E003EAD18 /* src */ = {
isa = PBXGroup;
children = (
65B35E1F121C261E003EAD18 /* app */,
65B35E28121C261E003EAD18 /* experimental */,
65B35E9A121C261E003EAD18 /* libs */,
65B364B2121C261F003EAD18 /* openpilotgcslibrary.pri */,
65B364B3121C261F003EAD18 /* openpilotgcsplugin.pri */,
65B364B4121C261F003EAD18 /* plugins */,
65B367C8121C2620003EAD18 /* rpath.pri */,
65B367C9121C2620003EAD18 /* shared */,
65B367FF121C2620003EAD18 /* src.pro */,
);
path = src;
sourceTree = "<group>";
};
65B35E1F121C261E003EAD18 /* app */ = {
isa = PBXGroup;
children = (
65B35E20121C261E003EAD18 /* app.pro */,
65B35E21121C261E003EAD18 /* Info.plist */,
65B35E22121C261E003EAD18 /* main.cpp */,
65B35E23121C261E003EAD18 /* openpilotgcs.icns */,
65B35E24121C261E003EAD18 /* openpilotgcs.ico */,
65B35E25121C261E003EAD18 /* openpilotgcs.rc */,
65B35E26121C261E003EAD18 /* prifile.icns */,
65B35E27121C261E003EAD18 /* profile.icns */,
);
path = app;
sourceTree = "<group>";
};
65B35E28121C261E003EAD18 /* experimental */ = {
isa = PBXGroup;
children = (
65B35E29121C261E003EAD18 /* HIDTest */,
65B35E2C121C261E003EAD18 /* OPMapWidget */,
65B35E93121C261E003EAD18 /* tools */,
);
path = experimental;
sourceTree = "<group>";
};
65B35E29121C261E003EAD18 /* HIDTest */ = {
isa = PBXGroup;
children = (
65B35E2A121C261E003EAD18 /* HIDTest.pro */,
65B35E2B121C261E003EAD18 /* main.cpp */,
);
path = HIDTest;
sourceTree = "<group>";
};
65B35E2C121C261E003EAD18 /* OPMapWidget */ = {
isa = PBXGroup;
children = (
65B35E2D121C261E003EAD18 /* common.pri */,
65B35E2E121C261E003EAD18 /* core */,
65B35E54121C261E003EAD18 /* finaltest */,
65B35E5B121C261E003EAD18 /* gettilestest */,
65B35E5E121C261E003EAD18 /* internals */,
65B35E81121C261E003EAD18 /* mapwidget */,
65B35E8A121C261E003EAD18 /* OPMapControl.pro */,
65B35E8B121C261E003EAD18 /* teste */,
65B35E8E121C261E003EAD18 /* widgettest */,
);
path = OPMapWidget;
sourceTree = "<group>";
};
65B35E2E121C261E003EAD18 /* core */ = {
isa = PBXGroup;
children = (
65B35E2F121C261E003EAD18 /* accessmode.h */,
65B35E30121C261E003EAD18 /* alllayersoftype.cpp */,
65B35E31121C261E003EAD18 /* alllayersoftype.h */,
65B35E32121C261E003EAD18 /* cache.cpp */,
65B35E33121C261E003EAD18 /* cache.h */,
65B35E34121C261E003EAD18 /* cacheitemqueue.cpp */,
65B35E35121C261E003EAD18 /* cacheitemqueue.h */,
65B35E36121C261E003EAD18 /* core.pro */,
65B35E37121C261E003EAD18 /* debugheader.h */,
65B35E38121C261E003EAD18 /* geodecoderstatus.h */,
65B35E39121C261E003EAD18 /* kibertilecache.cpp */,
65B35E3A121C261E003EAD18 /* kibertilecache.h */,
65B35E3B121C261E003EAD18 /* languagetype.cpp */,
65B35E3C121C261E003EAD18 /* languagetype.h */,
65B35E3D121C261E003EAD18 /* maptype.h */,
65B35E3E121C261E003EAD18 /* memorycache.cpp */,
65B35E3F121C261E003EAD18 /* memorycache.h */,
65B35E40121C261E003EAD18 /* opmaps.cpp */,
65B35E41121C261E003EAD18 /* opmaps.h */,
65B35E42121C261E003EAD18 /* placemark.cpp */,
65B35E43121C261E003EAD18 /* placemark.h */,
65B35E44121C261E003EAD18 /* point.cpp */,
65B35E45121C261E003EAD18 /* point.h */,
65B35E46121C261E003EAD18 /* providerstrings.cpp */,
65B35E47121C261E003EAD18 /* providerstrings.h */,
65B35E48121C261E003EAD18 /* pureimage.cpp */,
65B35E49121C261E003EAD18 /* pureimage.h */,
65B35E4A121C261E003EAD18 /* pureimagecache.cpp */,
65B35E4B121C261E003EAD18 /* pureimagecache.h */,
65B35E4C121C261E003EAD18 /* rawtile.cpp */,
65B35E4D121C261E003EAD18 /* rawtile.h */,
65B35E4E121C261E003EAD18 /* size.cpp */,
65B35E4F121C261E003EAD18 /* size.h */,
65B35E50121C261E003EAD18 /* tilecachequeue.cpp */,
65B35E51121C261E003EAD18 /* tilecachequeue.h */,
65B35E52121C261E003EAD18 /* urlfactory.cpp */,
65B35E53121C261E003EAD18 /* urlfactory.h */,
);
path = core;
sourceTree = "<group>";
};
65B35E54121C261E003EAD18 /* finaltest */ = {
isa = PBXGroup;
children = (
65B35E55121C261E003EAD18 /* finaltest.pro */,
65B35E56121C261E003EAD18 /* main.cpp */,
65B35E57121C261E003EAD18 /* mainwindow.cpp */,
65B35E58121C261E003EAD18 /* mainwindow.h */,
65B35E59121C261E003EAD18 /* mainwindow.ui */,
65B35E5A121C261E003EAD18 /* ui_mainwindow.h */,
);
path = finaltest;
sourceTree = "<group>";
};
65B35E5B121C261E003EAD18 /* gettilestest */ = {
isa = PBXGroup;
children = (
65B35E5C121C261E003EAD18 /* gettilestest.pro */,
65B35E5D121C261E003EAD18 /* main.cpp */,
);
path = gettilestest;
sourceTree = "<group>";
};
65B35E5E121C261E003EAD18 /* internals */ = {
isa = PBXGroup;
children = (
65B35E5F121C261E003EAD18 /* copyrightstrings.h */,
65B35E60121C261E003EAD18 /* core.cpp */,
65B35E61121C261E003EAD18 /* core.h */,
65B35E62121C261E003EAD18 /* debugheader.h */,
65B35E63121C261E003EAD18 /* internals.pro */,
65B35E64121C261E003EAD18 /* loadtask.cpp */,
65B35E65121C261E003EAD18 /* loadtask.h */,
65B35E66121C261E003EAD18 /* MouseWheelZoomType.cpp */,
65B35E67121C261E003EAD18 /* mousewheelzoomtype.h */,
65B35E68121C261E003EAD18 /* pointlatlng.cpp */,
65B35E69121C261E003EAD18 /* pointlatlng.h */,
65B35E6A121C261E003EAD18 /* projections */,
65B35E75121C261E003EAD18 /* pureprojection.cpp */,
65B35E76121C261E003EAD18 /* pureprojection.h */,
65B35E77121C261E003EAD18 /* rectangle.cpp */,
65B35E78121C261E003EAD18 /* rectangle.h */,
65B35E79121C261E003EAD18 /* rectlatlng.cpp */,
65B35E7A121C261E003EAD18 /* rectlatlng.h */,
65B35E7B121C261E003EAD18 /* sizelatlng.cpp */,
65B35E7C121C261E003EAD18 /* sizelatlng.h */,
65B35E7D121C261E003EAD18 /* tile.cpp */,
65B35E7E121C261E003EAD18 /* tile.h */,
65B35E7F121C261E003EAD18 /* tilematrix.cpp */,
65B35E80121C261E003EAD18 /* tilematrix.h */,
);
path = internals;
sourceTree = "<group>";
};
65B35E6A121C261E003EAD18 /* projections */ = {
isa = PBXGroup;
children = (
65B35E6B121C261E003EAD18 /* lks94projection.cpp */,
65B35E6C121C261E003EAD18 /* lks94projection.h */,
65B35E6D121C261E003EAD18 /* mercatorprojection.cpp */,
65B35E6E121C261E003EAD18 /* mercatorprojection.h */,
65B35E6F121C261E003EAD18 /* mercatorprojectionyandex.cpp */,
65B35E70121C261E003EAD18 /* mercatorprojectionyandex.h */,
65B35E71121C261E003EAD18 /* platecarreeprojection.cpp */,
65B35E72121C261E003EAD18 /* platecarreeprojection.h */,
65B35E73121C261E003EAD18 /* platecarreeprojectionpergo.cpp */,
65B35E74121C261E003EAD18 /* platecarreeprojectionpergo.h */,
);
path = projections;
sourceTree = "<group>";
};
65B35E81121C261E003EAD18 /* mapwidget */ = {
isa = PBXGroup;
children = (
65B35E82121C261E003EAD18 /* mapgraphicitem.cpp */,
65B35E83121C261E003EAD18 /* mapgraphicitem.h */,
65B35E84121C261E003EAD18 /* mapresources.qrc */,
65B35E85121C261E003EAD18 /* mapwidget.pro */,
65B35E86121C261E003EAD18 /* opmapcontrol.cpp */,
65B35E87121C261E003EAD18 /* opmapcontrol.h */,
65B35E88121C261E003EAD18 /* opmapwidget.cpp */,
65B35E89121C261E003EAD18 /* opmapwidget.h */,
);
path = mapwidget;
sourceTree = "<group>";
};
65B35E8B121C261E003EAD18 /* teste */ = {
isa = PBXGroup;
children = (
65B35E8C121C261E003EAD18 /* main.cpp */,
65B35E8D121C261E003EAD18 /* teste.pro */,
);
path = teste;
sourceTree = "<group>";
};
65B35E8E121C261E003EAD18 /* widgettest */ = {
isa = PBXGroup;
children = (
65B35E8F121C261E003EAD18 /* main.cpp */,
65B35E90121C261E003EAD18 /* map.cpp */,
65B35E91121C261E003EAD18 /* map.h */,
65B35E92121C261E003EAD18 /* widgettest.pro */,
);
path = widgettest;
sourceTree = "<group>";
};
65B35E93121C261E003EAD18 /* tools */ = {
isa = PBXGroup;
children = (
65B35E94121C261E003EAD18 /* DocumentationHelper */,
);
path = tools;
sourceTree = "<group>";
};
65B35E94121C261E003EAD18 /* DocumentationHelper */ = {
isa = PBXGroup;
children = (
65B35E95121C261E003EAD18 /* DocumentationHelper.pro */,
65B35E96121C261E003EAD18 /* main.cpp */,
65B35E97121C261E003EAD18 /* mainwindow.cpp */,
65B35E98121C261E003EAD18 /* mainwindow.h */,
65B35E99121C261E003EAD18 /* mainwindow.ui */,
);
path = DocumentationHelper;
sourceTree = "<group>";
};
65B35E9A121C261E003EAD18 /* libs */ = {
isa = PBXGroup;
children = (
65B35E9B121C261E003EAD18 /* aggregation */,
65B35EA9121C261E003EAD18 /* extensionsystem */,
65B35F2F121C261E003EAD18 /* glc_lib */,
65B360A5121C261E003EAD18 /* libqxt */,
65B3632F121C261F003EAD18 /* libs.pro */,
65B36330121C261F003EAD18 /* opmapcontrol */,
65B363A4121C261F003EAD18 /* qextserialport */,
65B363B2121C261F003EAD18 /* qtconcurrent */,
65B363B9121C261F003EAD18 /* qwt */,
65B36449121C261F003EAD18 /* qymodem */,
65B36455121C261F003EAD18 /* uavobjgenerator */,
65B3645C121C261F003EAD18 /* utils */,
);
path = libs;
sourceTree = "<group>";
};
65B35E9B121C261E003EAD18 /* aggregation */ = {
isa = PBXGroup;
children = (
65B35E9C121C261E003EAD18 /* aggregate.cpp */,
65B35E9D121C261E003EAD18 /* aggregate.h */,
65B35E9E121C261E003EAD18 /* aggregation.pri */,
65B35E9F121C261E003EAD18 /* aggregation.pro */,
65B35EA0121C261E003EAD18 /* aggregation_global.h */,
65B35EA1121C261E003EAD18 /* examples */,
);
path = aggregation;
sourceTree = "<group>";
};
65B35EA1121C261E003EAD18 /* examples */ = {
isa = PBXGroup;
children = (
65B35EA2121C261E003EAD18 /* examples.pro */,
65B35EA3121C261E003EAD18 /* text */,
);
path = examples;
sourceTree = "<group>";
};
65B35EA3121C261E003EAD18 /* text */ = {
isa = PBXGroup;
children = (
65B35EA4121C261E003EAD18 /* main.cpp */,
65B35EA5121C261E003EAD18 /* main.h */,
65B35EA6121C261E003EAD18 /* main.ui */,
65B35EA7121C261E003EAD18 /* myinterfaces.h */,
65B35EA8121C261E003EAD18 /* text.pro */,
);
path = text;
sourceTree = "<group>";
};
65B35EA9121C261E003EAD18 /* extensionsystem */ = {
isa = PBXGroup;
children = (
65B35EAA121C261E003EAD18 /* extensionsystem.pri */,
65B35EAB121C261E003EAD18 /* extensionsystem.pro */,
65B35EAC121C261E003EAD18 /* extensionsystem_dependencies.pri */,
65B35EAD121C261E003EAD18 /* extensionsystem_global.h */,
65B35EAE121C261E003EAD18 /* images */,
65B35EB1121C261E003EAD18 /* iplugin.cpp */,
65B35EB2121C261E003EAD18 /* iplugin.h */,
65B35EB3121C261E003EAD18 /* iplugin_p.h */,
65B35EB4121C261E003EAD18 /* optionsparser.cpp */,
65B35EB5121C261E003EAD18 /* optionsparser.h */,
65B35EB6121C261E003EAD18 /* plugindetailsview.cpp */,
65B35EB7121C261E003EAD18 /* plugindetailsview.h */,
65B35EB8121C261E003EAD18 /* plugindetailsview.ui */,
65B35EB9121C261E003EAD18 /* pluginerrorview.cpp */,
65B35EBA121C261E003EAD18 /* pluginerrorview.h */,
65B35EBB121C261E003EAD18 /* pluginerrorview.ui */,
65B35EBC121C261E003EAD18 /* pluginmanager.cpp */,
65B35EBD121C261E003EAD18 /* pluginmanager.h */,
65B35EBE121C261E003EAD18 /* pluginmanager_p.h */,
65B35EBF121C261E003EAD18 /* pluginspec.cpp */,
65B35EC0121C261E003EAD18 /* pluginspec.h */,
65B35EC1121C261E003EAD18 /* pluginspec_p.h */,
65B35EC2121C261E003EAD18 /* pluginview.cpp */,
65B35EC3121C261E003EAD18 /* pluginview.h */,
65B35EC4121C261E003EAD18 /* pluginview.qrc */,
65B35EC5121C261E003EAD18 /* pluginview.ui */,
65B35EC6121C261E003EAD18 /* pluginview_p.h */,
65B35EC7121C261E003EAD18 /* test */,
);
path = extensionsystem;
sourceTree = "<group>";
};
65B35EAE121C261E003EAD18 /* images */ = {
isa = PBXGroup;
children = (
65B35EAF121C261E003EAD18 /* error.png */,
65B35EB0121C261E003EAD18 /* ok.png */,
);
path = images;
sourceTree = "<group>";
};
65B35EC7121C261E003EAD18 /* test */ = {
isa = PBXGroup;
children = (
65B35EC8121C261E003EAD18 /* auto */,
65B35F12121C261E003EAD18 /* extensionsystem_test.pri */,
65B35F13121C261E003EAD18 /* manual */,
65B35F2E121C261E003EAD18 /* test.pro */,
);
path = test;
sourceTree = "<group>";
};
65B35EC8121C261E003EAD18 /* auto */ = {
isa = PBXGroup;
children = (
65B35EC9121C261E003EAD18 /* auto.pro */,
65B35ECA121C261E003EAD18 /* pluginmanager */,
65B35EF6121C261E003EAD18 /* pluginspec */,
);
path = auto;
sourceTree = "<group>";
};
65B35ECA121C261E003EAD18 /* pluginmanager */ = {
isa = PBXGroup;
children = (
65B35ECB121C261E003EAD18 /* circularplugins */,
65B35EDC121C261E003EAD18 /* correctplugins1 */,
65B35EED121C261E003EAD18 /* pluginmanager.pro */,
65B35EEE121C261E003EAD18 /* plugins */,
65B35EF3121C261E003EAD18 /* test.pro */,
65B35EF4121C261E003EAD18 /* test.sh */,
65B35EF5121C261E003EAD18 /* tst_pluginmanager.cpp */,
);
path = pluginmanager;
sourceTree = "<group>";
};
65B35ECB121C261E003EAD18 /* circularplugins */ = {
isa = PBXGroup;
children = (
65B35ECC121C261E003EAD18 /* circularplugins.pro */,
65B35ECD121C261E003EAD18 /* plugin1 */,
65B35ED2121C261E003EAD18 /* plugin2 */,
65B35ED7121C261E003EAD18 /* plugin3 */,
);
path = circularplugins;
sourceTree = "<group>";
};
65B35ECD121C261E003EAD18 /* plugin1 */ = {
isa = PBXGroup;
children = (
65B35ECE121C261E003EAD18 /* plugin.xml */,
65B35ECF121C261E003EAD18 /* plugin1.cpp */,
65B35ED0121C261E003EAD18 /* plugin1.h */,
65B35ED1121C261E003EAD18 /* plugin1.pro */,
);
path = plugin1;
sourceTree = "<group>";
};
65B35ED2121C261E003EAD18 /* plugin2 */ = {
isa = PBXGroup;
children = (
65B35ED3121C261E003EAD18 /* plugin.xml */,
65B35ED4121C261E003EAD18 /* plugin2.cpp */,
65B35ED5121C261E003EAD18 /* plugin2.h */,
65B35ED6121C261E003EAD18 /* plugin2.pro */,
);
path = plugin2;
sourceTree = "<group>";
};
65B35ED7121C261E003EAD18 /* plugin3 */ = {
isa = PBXGroup;
children = (
65B35ED8121C261E003EAD18 /* plugin.xml */,
65B35ED9121C261E003EAD18 /* plugin3.cpp */,
65B35EDA121C261E003EAD18 /* plugin3.h */,
65B35EDB121C261E003EAD18 /* plugin3.pro */,
);
path = plugin3;
sourceTree = "<group>";
};
65B35EDC121C261E003EAD18 /* correctplugins1 */ = {
isa = PBXGroup;
children = (
65B35EDD121C261E003EAD18 /* correctplugins1.pro */,
65B35EDE121C261E003EAD18 /* plugin1 */,
65B35EE3121C261E003EAD18 /* plugin2 */,
65B35EE8121C261E003EAD18 /* plugin3 */,
);
path = correctplugins1;
sourceTree = "<group>";
};
65B35EDE121C261E003EAD18 /* plugin1 */ = {
isa = PBXGroup;
children = (
65B35EDF121C261E003EAD18 /* plugin.spec */,
65B35EE0121C261E003EAD18 /* plugin1.cpp */,
65B35EE1121C261E003EAD18 /* plugin1.h */,
65B35EE2121C261E003EAD18 /* plugin1.pro */,
);
path = plugin1;
sourceTree = "<group>";
};
65B35EE3121C261E003EAD18 /* plugin2 */ = {
isa = PBXGroup;
children = (
65B35EE4121C261E003EAD18 /* plugin.spec */,
65B35EE5121C261E003EAD18 /* plugin2.cpp */,
65B35EE6121C261E003EAD18 /* plugin2.h */,
65B35EE7121C261E003EAD18 /* plugin2.pro */,
);
path = plugin2;
sourceTree = "<group>";
};
65B35EE8121C261E003EAD18 /* plugin3 */ = {
isa = PBXGroup;
children = (
65B35EE9121C261E003EAD18 /* plugin.spec */,
65B35EEA121C261E003EAD18 /* plugin3.cpp */,
65B35EEB121C261E003EAD18 /* plugin3.h */,
65B35EEC121C261E003EAD18 /* plugin3.pro */,
);
path = plugin3;
sourceTree = "<group>";
};
65B35EEE121C261E003EAD18 /* plugins */ = {
isa = PBXGroup;
children = (
65B35EEF121C261E003EAD18 /* myplug */,
65B35EF1121C261E003EAD18 /* otherplugin.xml */,
65B35EF2121C261E003EAD18 /* plugin1.xml */,
);
path = plugins;
sourceTree = "<group>";
};
65B35EEF121C261E003EAD18 /* myplug */ = {
isa = PBXGroup;
children = (
65B35EF0121C261E003EAD18 /* myplug.xml */,
);
path = myplug;
sourceTree = "<group>";
};
65B35EF6121C261E003EAD18 /* pluginspec */ = {
isa = PBXGroup;
children = (
65B35EF7121C261E003EAD18 /* pluginspec.pro */,
65B35EF8121C261E003EAD18 /* test.pro */,
65B35EF9121C261E003EAD18 /* test.sh */,
65B35EFA121C261E003EAD18 /* testdependencies */,
65B35F00121C261E003EAD18 /* testdir */,
65B35F02121C261E003EAD18 /* testplugin */,
65B35F08121C261E003EAD18 /* testspecs */,
65B35F11121C261E003EAD18 /* tst_pluginspec.cpp */,
);
path = pluginspec;
sourceTree = "<group>";
};
65B35EFA121C261E003EAD18 /* testdependencies */ = {
isa = PBXGroup;
children = (
65B35EFB121C261E003EAD18 /* spec1.xml */,
65B35EFC121C261E003EAD18 /* spec2.xml */,
65B35EFD121C261E003EAD18 /* spec3.xml */,
65B35EFE121C261E003EAD18 /* spec4.xml */,
65B35EFF121C261E003EAD18 /* spec5.xml */,
);
path = testdependencies;
sourceTree = "<group>";
};
65B35F00121C261E003EAD18 /* testdir */ = {
isa = PBXGroup;
children = (
65B35F01121C261E003EAD18 /* spec.xml */,
);
path = testdir;
sourceTree = "<group>";
};
65B35F02121C261E003EAD18 /* testplugin */ = {
isa = PBXGroup;
children = (
65B35F03121C261E003EAD18 /* testplugin.cpp */,
65B35F04121C261E003EAD18 /* testplugin.h */,
65B35F05121C261E003EAD18 /* testplugin.pro */,
65B35F06121C261E003EAD18 /* testplugin.xml */,
65B35F07121C261E003EAD18 /* testplugin_global.h */,
);
path = testplugin;
sourceTree = "<group>";
};
65B35F08121C261E003EAD18 /* testspecs */ = {
isa = PBXGroup;
children = (
65B35F09121C261E003EAD18 /* simplespec.xml */,
65B35F0A121C261E003EAD18 /* spec1.xml */,
65B35F0B121C261E003EAD18 /* spec2.xml */,
65B35F0C121C261E003EAD18 /* spec_wrong1.xml */,
65B35F0D121C261E003EAD18 /* spec_wrong2.xml */,
65B35F0E121C261E003EAD18 /* spec_wrong3.xml */,
65B35F0F121C261E003EAD18 /* spec_wrong4.xml */,
65B35F10121C261E003EAD18 /* spec_wrong5.xml */,
);
path = testspecs;
sourceTree = "<group>";
};
65B35F13121C261E003EAD18 /* manual */ = {
isa = PBXGroup;
children = (
65B35F14121C261E003EAD18 /* manual.pro */,
65B35F15121C261E003EAD18 /* pluginview */,
);
path = manual;
sourceTree = "<group>";
};
65B35F15121C261E003EAD18 /* pluginview */ = {
isa = PBXGroup;
children = (
65B35F16121C261E003EAD18 /* plugindialog.cpp */,
65B35F17121C261E003EAD18 /* plugindialog.h */,
65B35F18121C261E003EAD18 /* plugins */,
65B35F2B121C261E003EAD18 /* pluginview.pro */,
65B35F2C121C261E003EAD18 /* test.pro */,
65B35F2D121C261E003EAD18 /* test.sh */,
);
path = pluginview;
sourceTree = "<group>";
};
65B35F18121C261E003EAD18 /* plugins */ = {
isa = PBXGroup;
children = (
65B35F19121C261E003EAD18 /* plugin1 */,
65B35F1E121C261E003EAD18 /* plugin2 */,
65B35F23121C261E003EAD18 /* plugin3 */,
65B35F28121C261E003EAD18 /* plugin4 */,
65B35F2A121C261E003EAD18 /* plugins.pro */,
);
path = plugins;
sourceTree = "<group>";
};
65B35F19121C261E003EAD18 /* plugin1 */ = {
isa = PBXGroup;
children = (
65B35F1A121C261E003EAD18 /* plugin.xml */,
65B35F1B121C261E003EAD18 /* plugin1.cpp */,
65B35F1C121C261E003EAD18 /* plugin1.h */,
65B35F1D121C261E003EAD18 /* plugin1.pro */,
);
path = plugin1;
sourceTree = "<group>";
};
65B35F1E121C261E003EAD18 /* plugin2 */ = {
isa = PBXGroup;
children = (
65B35F1F121C261E003EAD18 /* plugin.xml */,
65B35F20121C261E003EAD18 /* plugin2.cpp */,
65B35F21121C261E003EAD18 /* plugin2.h */,
65B35F22121C261E003EAD18 /* plugin2.pro */,
);
path = plugin2;
sourceTree = "<group>";
};
65B35F23121C261E003EAD18 /* plugin3 */ = {
isa = PBXGroup;
children = (
65B35F24121C261E003EAD18 /* plugin.xml */,
65B35F25121C261E003EAD18 /* plugin3.cpp */,
65B35F26121C261E003EAD18 /* plugin3.h */,
65B35F27121C261E003EAD18 /* plugin3.pro */,
);
path = plugin3;
sourceTree = "<group>";
};
65B35F28121C261E003EAD18 /* plugin4 */ = {
isa = PBXGroup;
children = (
65B35F29121C261E003EAD18 /* plugin.xml */,
);
path = plugin4;
sourceTree = "<group>";
};
65B35F2F121C261E003EAD18 /* glc_lib */ = {
isa = PBXGroup;
children = (
65B35F30121C261E003EAD18 /* 3DWidget */,
65B35F41121C261E003EAD18 /* 3rdparty */,
65B35FA1121C261E003EAD18 /* Build */,
65B35FA2121C261E003EAD18 /* COPYING */,
65B35FA3121C261E003EAD18 /* geometry */,
65B35FCE121C261E003EAD18 /* glc_boundingbox.cpp */,
65B35FCF121C261E003EAD18 /* glc_boundingbox.h */,
65B35FD0121C261E003EAD18 /* glc_cachemanager.cpp */,
65B35FD1121C261E003EAD18 /* glc_cachemanager.h */,
65B35FD2121C261E003EAD18 /* glc_config.h */,
65B35FD3121C261E003EAD18 /* glc_exception.cpp */,
65B35FD4121C261E003EAD18 /* glc_exception.h */,
65B35FD5121C261E003EAD18 /* glc_ext.cpp */,
65B35FD6121C261E003EAD18 /* glc_ext.h */,
65B35FD7121C261E003EAD18 /* glc_factory.cpp */,
65B35FD8121C261E003EAD18 /* glc_factory.h */,
65B35FD9121C261E003EAD18 /* glc_fileformatexception.cpp */,
65B35FDA121C261E003EAD18 /* glc_fileformatexception.h */,
65B35FDB121C261E003EAD18 /* glc_global.cpp */,
65B35FDC121C261E003EAD18 /* glc_global.h */,
65B35FDD121C261E003EAD18 /* glc_lib.pri */,
65B35FDE121C261E003EAD18 /* glc_lib.pro */,
65B35FDF121C261E003EAD18 /* glc_object.cpp */,
65B35FE0121C261E003EAD18 /* glc_object.h */,
65B35FE1121C261E003EAD18 /* glc_openglexception.cpp */,
65B35FE2121C261E003EAD18 /* glc_openglexception.h */,
65B35FE3121C261E003EAD18 /* glc_renderstatistics.cpp */,
65B35FE4121C261E003EAD18 /* glc_renderstatistics.h */,
65B35FE5121C261E003EAD18 /* glc_state.cpp */,
65B35FE6121C261E003EAD18 /* glc_state.h */,
65B35FE7121C261E003EAD18 /* include */,
65B3603B121C261E003EAD18 /* io */,
65B3604E121C261E003EAD18 /* maths */,
65B36060121C261E003EAD18 /* sceneGraph */,
65B36077121C261E003EAD18 /* shading */,
65B36084121C261E003EAD18 /* viewport */,
);
path = glc_lib;
sourceTree = "<group>";
};
65B35F30121C261E003EAD18 /* 3DWidget */ = {
isa = PBXGroup;
children = (
65B35F31121C261E003EAD18 /* glc_3dwidget.cpp */,
65B35F32121C261E003EAD18 /* glc_3dwidget.h */,
65B35F33121C261E003EAD18 /* glc_3dwidgetmanager.cpp */,
65B35F34121C261E003EAD18 /* glc_3dwidgetmanager.h */,
65B35F35121C261E003EAD18 /* glc_3dwidgetmanagerhandle.cpp */,
65B35F36121C261E003EAD18 /* glc_3dwidgetmanagerhandle.h */,
65B35F37121C261E003EAD18 /* glc_abstractmanipulator.cpp */,
65B35F38121C261E003EAD18 /* glc_abstractmanipulator.h */,
65B35F39121C261E003EAD18 /* glc_axis.cpp */,
65B35F3A121C261E003EAD18 /* glc_axis.h */,
65B35F3B121C261E003EAD18 /* glc_cuttingplane.cpp */,
65B35F3C121C261E003EAD18 /* glc_cuttingplane.h */,
65B35F3D121C261E003EAD18 /* glc_pullmanipulator.cpp */,
65B35F3E121C261E003EAD18 /* glc_pullmanipulator.h */,
65B35F3F121C261E003EAD18 /* glc_rotationmanipulator.cpp */,
65B35F40121C261E003EAD18 /* glc_rotationmanipulator.h */,
);
path = 3DWidget;
sourceTree = "<group>";
};
65B35F41121C261E003EAD18 /* 3rdparty */ = {
isa = PBXGroup;
children = (
65B35F42121C261E003EAD18 /* glext */,
65B35F44121C261E003EAD18 /* lib3ds */,
65B35F6E121C261E003EAD18 /* quazip */,
65B35F7D121C261E003EAD18 /* zlib */,
);
path = 3rdparty;
sourceTree = "<group>";
};
65B35F42121C261E003EAD18 /* glext */ = {
isa = PBXGroup;
children = (
65B35F43121C261E003EAD18 /* glext.h */,
);
path = glext;
sourceTree = "<group>";
};
65B35F44121C261E003EAD18 /* lib3ds */ = {
isa = PBXGroup;
children = (
65B35F45121C261E003EAD18 /* atmosphere.c */,
65B35F46121C261E003EAD18 /* atmosphere.h */,
65B35F47121C261E003EAD18 /* AUTHORS */,
65B35F48121C261E003EAD18 /* background.c */,
65B35F49121C261E003EAD18 /* background.h */,
65B35F4A121C261E003EAD18 /* camera.c */,
65B35F4B121C261E003EAD18 /* camera.h */,
65B35F4C121C261E003EAD18 /* ChangeLog */,
65B35F4D121C261E003EAD18 /* chunk.c */,
65B35F4E121C261E003EAD18 /* chunk.h */,
65B35F4F121C261E003EAD18 /* chunktable.h */,
65B35F50121C261E003EAD18 /* ease.c */,
65B35F51121C261E003EAD18 /* ease.h */,
65B35F52121C261E003EAD18 /* file.c */,
65B35F53121C261E003EAD18 /* file.h */,
65B35F54121C261E003EAD18 /* io.c */,
65B35F55121C261E003EAD18 /* io.h */,
65B35F56121C261E003EAD18 /* light.c */,
65B35F57121C261E003EAD18 /* light.h */,
65B35F58121C261E003EAD18 /* material.c */,
65B35F59121C261E003EAD18 /* material.h */,
65B35F5A121C261E003EAD18 /* matrix.c */,
65B35F5B121C261E003EAD18 /* matrix.h */,
65B35F5C121C261E003EAD18 /* mesh.c */,
65B35F5D121C261E003EAD18 /* mesh.h */,
65B35F5E121C261E003EAD18 /* node.c */,
65B35F5F121C261E003EAD18 /* node.h */,
65B35F60121C261E003EAD18 /* quat.c */,
65B35F61121C261E003EAD18 /* quat.h */,
65B35F62121C261E003EAD18 /* README */,
65B35F63121C261E003EAD18 /* shadow.c */,
65B35F64121C261E003EAD18 /* shadow.h */,
65B35F65121C261E003EAD18 /* tcb.c */,
65B35F66121C261E003EAD18 /* tcb.h */,
65B35F67121C261E003EAD18 /* tracks.c */,
65B35F68121C261E003EAD18 /* tracks.h */,
65B35F69121C261E003EAD18 /* types.h */,
65B35F6A121C261E003EAD18 /* vector.c */,
65B35F6B121C261E003EAD18 /* vector.h */,
65B35F6C121C261E003EAD18 /* viewport.c */,
65B35F6D121C261E003EAD18 /* viewport.h */,
);
path = lib3ds;
sourceTree = "<group>";
};
65B35F6E121C261E003EAD18 /* quazip */ = {
isa = PBXGroup;
children = (
65B35F6F121C261E003EAD18 /* crypt.h */,
65B35F70121C261E003EAD18 /* ioapi.c */,
65B35F71121C261E003EAD18 /* ioapi.h */,
65B35F72121C261E003EAD18 /* quazip.cpp */,
65B35F73121C261E003EAD18 /* quazip.h */,
65B35F74121C261E003EAD18 /* quazipfile.cpp */,
65B35F75121C261E003EAD18 /* quazipfile.h */,
65B35F76121C261E003EAD18 /* quazipfileinfo.h */,
65B35F77121C261E003EAD18 /* quazipnewinfo.cpp */,
65B35F78121C261E003EAD18 /* quazipnewinfo.h */,
65B35F79121C261E003EAD18 /* unzip.c */,
65B35F7A121C261E003EAD18 /* unzip.h */,
65B35F7B121C261E003EAD18 /* zip.c */,
65B35F7C121C261E003EAD18 /* zip.h */,
);
path = quazip;
sourceTree = "<group>";
};
65B35F7D121C261E003EAD18 /* zlib */ = {
isa = PBXGroup;
children = (
65B35F7E121C261E003EAD18 /* adler32.c */,
65B35F7F121C261E003EAD18 /* algorithm.txt */,
65B35F80121C261E003EAD18 /* ChangeLog */,
65B35F81121C261E003EAD18 /* compress.c */,
65B35F82121C261E003EAD18 /* configure */,
65B35F83121C261E003EAD18 /* crc32.c */,
65B35F84121C261E003EAD18 /* crc32.h */,
65B35F85121C261E003EAD18 /* deflate.c */,
65B35F86121C261E003EAD18 /* deflate.h */,
65B35F87121C261E003EAD18 /* example.c */,
65B35F88121C261E003EAD18 /* FAQ */,
65B35F89121C261E003EAD18 /* gzio.c */,
65B35F8A121C261E003EAD18 /* INDEX */,
65B35F8B121C261E003EAD18 /* infback.c */,
65B35F8C121C261E003EAD18 /* inffast.c */,
65B35F8D121C261E003EAD18 /* inffast.h */,
65B35F8E121C261E003EAD18 /* inffixed.h */,
65B35F8F121C261E003EAD18 /* inflate.c */,
65B35F90121C261E003EAD18 /* inflate.h */,
65B35F91121C261E003EAD18 /* inftrees.c */,
65B35F92121C261E003EAD18 /* inftrees.h */,
65B35F93121C261E003EAD18 /* make_vms.com */,
65B35F94121C261E003EAD18 /* Makefile */,
65B35F95121C261E003EAD18 /* Makefile.in */,
65B35F96121C261E003EAD18 /* minigzip.c */,
65B35F97121C261E003EAD18 /* README */,
65B35F98121C261E003EAD18 /* trees.c */,
65B35F99121C261E003EAD18 /* trees.h */,
65B35F9A121C261E003EAD18 /* uncompr.c */,
65B35F9B121C261E003EAD18 /* zconf.h */,
65B35F9C121C261E003EAD18 /* zconf.in.h */,
65B35F9D121C261E003EAD18 /* zlib.3 */,
65B35F9E121C261E003EAD18 /* zlib.h */,
65B35F9F121C261E003EAD18 /* zutil.c */,
65B35FA0121C261E003EAD18 /* zutil.h */,
);
path = zlib;
sourceTree = "<group>";
};
65B35FA1121C261E003EAD18 /* Build */ = {
isa = PBXGroup;
children = (
);
path = Build;
sourceTree = "<group>";
};
65B35FA3121C261E003EAD18 /* geometry */ = {
isa = PBXGroup;
children = (
65B35FA4121C261E003EAD18 /* glc_3drep.cpp */,
65B35FA5121C261E003EAD18 /* glc_3drep.h */,
65B35FA6121C261E003EAD18 /* glc_arrow.cpp */,
65B35FA7121C261E003EAD18 /* glc_arrow.h */,
65B35FA8121C261E003EAD18 /* glc_box.cpp */,
65B35FA9121C261E003EAD18 /* glc_box.h */,
65B35FAA121C261E003EAD18 /* glc_bsrep.cpp */,
65B35FAB121C261E003EAD18 /* glc_bsrep.h */,
65B35FAC121C261E003EAD18 /* glc_circle.cpp */,
65B35FAD121C261E003EAD18 /* glc_circle.h */,
65B35FAE121C261E003EAD18 /* glc_cone.cpp */,
65B35FAF121C261E003EAD18 /* glc_cone.h */,
65B35FB0121C261E003EAD18 /* glc_cylinder.cpp */,
65B35FB1121C261E003EAD18 /* glc_cylinder.h */,
65B35FB2121C261E003EAD18 /* glc_disc.cpp */,
65B35FB3121C261E003EAD18 /* glc_disc.h */,
65B35FB4121C261E003EAD18 /* glc_geometry.cpp */,
65B35FB5121C261E003EAD18 /* glc_geometry.h */,
65B35FB6121C261E003EAD18 /* glc_line.cpp */,
65B35FB7121C261E003EAD18 /* glc_line.h */,
65B35FB8121C261E003EAD18 /* glc_lod.cpp */,
65B35FB9121C261E003EAD18 /* glc_lod.h */,
65B35FBA121C261E003EAD18 /* glc_mesh.cpp */,
65B35FBB121C261E003EAD18 /* glc_mesh.h */,
65B35FBC121C261E003EAD18 /* glc_meshdata.cpp */,
65B35FBD121C261E003EAD18 /* glc_meshdata.h */,
65B35FBE121C261E003EAD18 /* glc_point.cpp */,
65B35FBF121C261E003EAD18 /* glc_point.h */,
65B35FC0121C261E003EAD18 /* glc_pointsprite.cpp */,
65B35FC1121C261E003EAD18 /* glc_pointsprite.h */,
65B35FC2121C261E003EAD18 /* glc_polylines.cpp */,
65B35FC3121C261E003EAD18 /* glc_polylines.h */,
65B35FC4121C261E003EAD18 /* glc_primitivegroup.cpp */,
65B35FC5121C261E003EAD18 /* glc_primitivegroup.h */,
65B35FC6121C261E003EAD18 /* glc_rectangle.cpp */,
65B35FC7121C261E003EAD18 /* glc_rectangle.h */,
65B35FC8121C261E003EAD18 /* glc_rep.cpp */,
65B35FC9121C261E003EAD18 /* glc_rep.h */,
65B35FCA121C261E003EAD18 /* glc_sphere.cpp */,
65B35FCB121C261E003EAD18 /* glc_sphere.h */,
65B35FCC121C261E003EAD18 /* glc_wiredata.cpp */,
65B35FCD121C261E003EAD18 /* glc_wiredata.h */,
);
path = geometry;
sourceTree = "<group>";
};
65B35FE7121C261E003EAD18 /* include */ = {
isa = PBXGroup;
children = (
65B35FE8121C261E003EAD18 /* GLC_3DRep */,
65B35FE9121C261E003EAD18 /* GLC_3DViewCollection */,
65B35FEA121C261E003EAD18 /* GLC_3DViewInstance */,
65B35FEB121C261E003EAD18 /* GLC_3DWidget */,
65B35FEC121C261E003EAD18 /* GLC_3DWidgetManager */,
65B35FED121C261E003EAD18 /* GLC_3DWidgetManagerHandle */,
65B35FEE121C261E003EAD18 /* GLC_AbstractManipulator */,
65B35FEF121C261E003EAD18 /* GLC_Arrow */,
65B35FF0121C261E003EAD18 /* GLC_Attribute */,
65B35FF1121C261E003EAD18 /* GLC_Axis */,
65B35FF2121C261E003EAD18 /* GLC_BoundingBox */,
65B35FF3121C261E003EAD18 /* GLC_Box */,
65B35FF4121C261E003EAD18 /* GLC_BSRep */,
65B35FF5121C261E003EAD18 /* GLC_CacheManager */,
65B35FF6121C261E003EAD18 /* GLC_Camera */,
65B35FF7121C261E003EAD18 /* GLC_Circle */,
65B35FF8121C261E003EAD18 /* GLC_Cone */,
65B35FF9121C261E003EAD18 /* GLC_CuttingPlane */,
65B35FFA121C261E003EAD18 /* GLC_Cylinder */,
65B35FFB121C261E003EAD18 /* GLC_Disc */,
65B35FFC121C261E003EAD18 /* GLC_Exception */,
65B35FFD121C261E003EAD18 /* GLC_Ext */,
65B35FFE121C261E003EAD18 /* GLC_Factory */,
65B35FFF121C261E003EAD18 /* GLC_FileFormatException */,
65B36000121C261E003EAD18 /* GLC_FlyMover */,
65B36001121C261E003EAD18 /* GLC_Frustum */,
65B36002121C261E003EAD18 /* GLC_Geometry */,
65B36003121C261E003EAD18 /* GLC_GeomTools */,
65B36004121C261E003EAD18 /* GLC_Global */,
65B36005121C261E003EAD18 /* GLC_ImagePlane */,
65B36006121C261E003EAD18 /* GLC_Interpolator */,
65B36007121C261E003EAD18 /* GLC_Light */,
65B36008121C261E003EAD18 /* GLC_Line */,
65B36009121C261E003EAD18 /* GLC_Line3d */,
65B3600A121C261E003EAD18 /* GLC_Material */,
65B3600B121C261E003EAD18 /* GLC_Matrix4x4 */,
65B3600C121C261E003EAD18 /* GLC_Mesh */,
65B3600D121C261E003EAD18 /* GLC_Mover */,
65B3600E121C261E003EAD18 /* GLC_MoverController */,
65B3600F121C261E003EAD18 /* GLC_Object */,
65B36010121C261E003EAD18 /* GLC_Octree */,
65B36011121C261E003EAD18 /* GLC_OctreeNode */,
65B36012121C261E003EAD18 /* GLC_OpenGlException */,
65B36013121C261E003EAD18 /* GLC_PanMover */,
65B36014121C261E003EAD18 /* GLC_Plane */,
65B36015121C261E003EAD18 /* GLC_Point */,
65B36016121C261E003EAD18 /* GLC_Point2d */,
65B36017121C261E003EAD18 /* GLC_Point2df */,
65B36018121C261E003EAD18 /* GLC_Point3d */,
65B36019121C261E003EAD18 /* GLC_Point3df */,
65B3601A121C261E003EAD18 /* GLC_Point4d */,
65B3601B121C261E003EAD18 /* GLC_PointSprite */,
65B3601C121C261E003EAD18 /* GLC_Polylines */,
65B3601D121C261E003EAD18 /* GLC_PullManipulator */,
65B3601E121C261E003EAD18 /* GLC_Rectangle */,
65B3601F121C261E003EAD18 /* GLC_RenderProperties */,
65B36020121C261E003EAD18 /* GLC_RenderStatistics */,
65B36021121C261E003EAD18 /* GLC_Rep */,
65B36022121C261E003EAD18 /* GLC_RepCrossMover */,
65B36023121C261E003EAD18 /* GLC_RepFlyMover */,
65B36024121C261E003EAD18 /* GLC_RepMover */,
65B36025121C261E003EAD18 /* GLC_RepTrackBallMover */,
65B36026121C261E003EAD18 /* GLC_RotationManipulator */,
65B36027121C261E003EAD18 /* GLC_SelectionMaterial */,
65B36028121C261E003EAD18 /* GLC_Shader */,
65B36029121C261E003EAD18 /* GLC_SpacePartitioning */,
65B3602A121C261E003EAD18 /* GLC_Sphere */,
65B3602B121C261E003EAD18 /* GLC_State */,
65B3602C121C261E003EAD18 /* GLC_StructInstance */,
65B3602D121C261E003EAD18 /* GLC_StructOccurence */,
65B3602E121C261E003EAD18 /* GLC_StructReference */,
65B3602F121C261E003EAD18 /* GLC_Texture */,
65B36030121C261E003EAD18 /* GLC_TrackBallMover */,
65B36031121C261E003EAD18 /* GLC_TurnTableMover */,
65B36032121C261E003EAD18 /* GLC_Vector2d */,
65B36033121C261E003EAD18 /* GLC_Vector2df */,
65B36034121C261E003EAD18 /* GLC_Vector3d */,
65B36035121C261E003EAD18 /* GLC_Vector3df */,
65B36036121C261E003EAD18 /* GLC_Vector4d */,
65B36037121C261E003EAD18 /* GLC_Viewport */,
65B36038121C261E003EAD18 /* GLC_World */,
65B36039121C261E003EAD18 /* GLC_WorldTo3dxml */,
65B3603A121C261E003EAD18 /* GLC_ZoomMover */,
);
path = include;
sourceTree = "<group>";
};
65B3603B121C261E003EAD18 /* io */ = {
isa = PBXGroup;
children = (
65B3603C121C261E003EAD18 /* glc_3dstoworld.cpp */,
65B3603D121C261E003EAD18 /* glc_3dstoworld.h */,
65B3603E121C261E003EAD18 /* glc_3dxmltoworld.cpp */,
65B3603F121C261E003EAD18 /* glc_3dxmltoworld.h */,
65B36040121C261E003EAD18 /* glc_bsreptoworld.cpp */,
65B36041121C261E003EAD18 /* glc_bsreptoworld.h */,
65B36042121C261E003EAD18 /* glc_colladatoworld.cpp */,
65B36043121C261E003EAD18 /* glc_colladatoworld.h */,
65B36044121C261E003EAD18 /* glc_objmtlloader.cpp */,
65B36045121C261E003EAD18 /* glc_objmtlloader.h */,
65B36046121C261E003EAD18 /* glc_objtoworld.cpp */,
65B36047121C261E003EAD18 /* glc_objtoworld.h */,
65B36048121C261E003EAD18 /* glc_offtoworld.cpp */,
65B36049121C261E003EAD18 /* glc_offtoworld.h */,
65B3604A121C261E003EAD18 /* glc_stltoworld.cpp */,
65B3604B121C261E003EAD18 /* glc_stltoworld.h */,
65B3604C121C261E003EAD18 /* glc_worldto3dxml.cpp */,
65B3604D121C261E003EAD18 /* glc_worldto3dxml.h */,
);
path = io;
sourceTree = "<group>";
};
65B3604E121C261E003EAD18 /* maths */ = {
isa = PBXGroup;
children = (
65B3604F121C261E003EAD18 /* glc_geomtools.cpp */,
65B36050121C261E003EAD18 /* glc_geomtools.h */,
65B36051121C261E003EAD18 /* glc_interpolator.cpp */,
65B36052121C261E003EAD18 /* glc_interpolator.h */,
65B36053121C261E003EAD18 /* glc_line3d.cpp */,
65B36054121C261E003EAD18 /* glc_line3d.h */,
65B36055121C261E003EAD18 /* glc_matrix4x4.cpp */,
65B36056121C261E003EAD18 /* glc_matrix4x4.h */,
65B36057121C261E003EAD18 /* glc_plane.cpp */,
65B36058121C261E003EAD18 /* glc_plane.h */,
65B36059121C261E003EAD18 /* glc_utils_maths.h */,
65B3605A121C261E003EAD18 /* glc_vector2d.h */,
65B3605B121C261E003EAD18 /* glc_vector2df.h */,
65B3605C121C261E003EAD18 /* glc_vector3d.h */,
65B3605D121C261E003EAD18 /* glc_vector3df.h */,
65B3605E121C261E003EAD18 /* glc_vector4d.cpp */,
65B3605F121C261E003EAD18 /* glc_vector4d.h */,
);
path = maths;
sourceTree = "<group>";
};
65B36060121C261E003EAD18 /* sceneGraph */ = {
isa = PBXGroup;
children = (
65B36061121C261E003EAD18 /* glc_3dviewcollection.cpp */,
65B36062121C261E003EAD18 /* glc_3dviewcollection.h */,
65B36063121C261E003EAD18 /* glc_3dviewinstance.cpp */,
65B36064121C261E003EAD18 /* glc_3dviewinstance.h */,
65B36065121C261E003EAD18 /* glc_attributes.cpp */,
65B36066121C261E003EAD18 /* glc_attributes.h */,
65B36067121C261E003EAD18 /* glc_octree.cpp */,
65B36068121C261E003EAD18 /* glc_octree.h */,
65B36069121C261E003EAD18 /* glc_octreenode.cpp */,
65B3606A121C261E003EAD18 /* glc_octreenode.h */,
65B3606B121C261E003EAD18 /* glc_spacepartitioning.cpp */,
65B3606C121C261E003EAD18 /* glc_spacepartitioning.h */,
65B3606D121C261E003EAD18 /* glc_structinstance.cpp */,
65B3606E121C261E003EAD18 /* glc_structinstance.h */,
65B3606F121C261E003EAD18 /* glc_structoccurence.cpp */,
65B36070121C261E003EAD18 /* glc_structoccurence.h */,
65B36071121C261E003EAD18 /* glc_structreference.cpp */,
65B36072121C261E003EAD18 /* glc_structreference.h */,
65B36073121C261E003EAD18 /* glc_world.cpp */,
65B36074121C261E003EAD18 /* glc_world.h */,
65B36075121C261E003EAD18 /* glc_worldhandle.cpp */,
65B36076121C261E003EAD18 /* glc_worldhandle.h */,
);
path = sceneGraph;
sourceTree = "<group>";
};
65B36077121C261E003EAD18 /* shading */ = {
isa = PBXGroup;
children = (
65B36078121C261E003EAD18 /* glc_light.cpp */,
65B36079121C261E003EAD18 /* glc_light.h */,
65B3607A121C261E003EAD18 /* glc_material.cpp */,
65B3607B121C261E003EAD18 /* glc_material.h */,
65B3607C121C261E003EAD18 /* glc_renderproperties.cpp */,
65B3607D121C261E003EAD18 /* glc_renderproperties.h */,
65B3607E121C261E003EAD18 /* glc_selectionmaterial.cpp */,
65B3607F121C261E003EAD18 /* glc_selectionmaterial.h */,
65B36080121C261E003EAD18 /* glc_shader.cpp */,
65B36081121C261E003EAD18 /* glc_shader.h */,
65B36082121C261E003EAD18 /* glc_texture.cpp */,
65B36083121C261E003EAD18 /* glc_texture.h */,
);
path = shading;
sourceTree = "<group>";
};
65B36084121C261E003EAD18 /* viewport */ = {
isa = PBXGroup;
children = (
65B36085121C261E003EAD18 /* glc_camera.cpp */,
65B36086121C261E003EAD18 /* glc_camera.h */,
65B36087121C261E003EAD18 /* glc_flymover.cpp */,
65B36088121C261E003EAD18 /* glc_flymover.h */,
65B36089121C261E003EAD18 /* glc_frustum.cpp */,
65B3608A121C261E003EAD18 /* glc_frustum.h */,
65B3608B121C261E003EAD18 /* glc_imageplane.cpp */,
65B3608C121C261E003EAD18 /* glc_imageplane.h */,
65B3608D121C261E003EAD18 /* glc_mover.cpp */,
65B3608E121C261E003EAD18 /* glc_mover.h */,
65B3608F121C261E003EAD18 /* glc_movercontroller.cpp */,
65B36090121C261E003EAD18 /* glc_movercontroller.h */,
65B36091121C261E003EAD18 /* glc_panmover.cpp */,
65B36092121C261E003EAD18 /* glc_panmover.h */,
65B36093121C261E003EAD18 /* glc_repcrossmover.cpp */,
65B36094121C261E003EAD18 /* glc_repcrossmover.h */,
65B36095121C261E003EAD18 /* glc_repflymover.cpp */,
65B36096121C261E003EAD18 /* glc_repflymover.h */,
65B36097121C261E003EAD18 /* glc_repmover.cpp */,
65B36098121C261E003EAD18 /* glc_repmover.h */,
65B36099121C261E003EAD18 /* glc_reptrackballmover.cpp */,
65B3609A121C261E003EAD18 /* glc_reptrackballmover.h */,
65B3609B121C261E003EAD18 /* glc_settargetmover.cpp */,
65B3609C121C261E003EAD18 /* glc_settargetmover.h */,
65B3609D121C261E003EAD18 /* glc_trackballmover.cpp */,
65B3609E121C261E003EAD18 /* glc_trackballmover.h */,
65B3609F121C261E003EAD18 /* glc_turntablemover.cpp */,
65B360A0121C261E003EAD18 /* glc_turntablemover.h */,
65B360A1121C261E003EAD18 /* glc_viewport.cpp */,
65B360A2121C261E003EAD18 /* glc_viewport.h */,
65B360A3121C261E003EAD18 /* glc_zoommover.cpp */,
65B360A4121C261E003EAD18 /* glc_zoommover.h */,
);
path = viewport;
sourceTree = "<group>";
};
65B360A5121C261E003EAD18 /* libqxt */ = {
isa = PBXGroup;
children = (
65B360A6121C261E003EAD18 /* AUTHORS */,
65B360A7121C261E003EAD18 /* cpl1.0.txt */,
65B360A8121C261E003EAD18 /* lgpl-2.1.txt */,
65B360A9121C261E003EAD18 /* libqxt.pri */,
65B360AA121C261E003EAD18 /* libqxt.pro */,
65B360AB121C261E003EAD18 /* LICENSE */,
65B360AC121C261E003EAD18 /* README */,
65B360AD121C261E003EAD18 /* src */,
65B36327121C261F003EAD18 /* translations */,
);
path = libqxt;
sourceTree = "<group>";
};
65B360AD121C261E003EAD18 /* src */ = {
isa = PBXGroup;
children = (
65B360AE121C261E003EAD18 /* berkeley */,
65B360B8121C261E003EAD18 /* core */,
65B36127121C261F003EAD18 /* designer */,
65B36152121C261F003EAD18 /* gui */,
65B362CE121C261F003EAD18 /* network */,
65B362EA121C261F003EAD18 /* qxtbase.pri */,
65B362EB121C261F003EAD18 /* qxtlibs.pri */,
65B362EC121C261F003EAD18 /* sql */,
65B362F5121C261F003EAD18 /* web */,
65B36313121C261F003EAD18 /* zeroconf */,
);
path = src;
sourceTree = "<group>";
};
65B360AE121C261E003EAD18 /* berkeley */ = {
isa = PBXGroup;
children = (
65B360AF121C261E003EAD18 /* berkeley.pri */,
65B360B0121C261E003EAD18 /* berkeley.pro */,
65B360B1121C261E003EAD18 /* qxtbdb.cpp */,
65B360B2121C261E003EAD18 /* qxtbdb.h */,
65B360B3121C261E003EAD18 /* qxtbdbhash.cpp */,
65B360B4121C261E003EAD18 /* qxtbdbhash.h */,
65B360B5121C261E003EAD18 /* qxtbdbtree.cpp */,
65B360B6121C261E003EAD18 /* qxtbdbtree.h */,
65B360B7121C261E003EAD18 /* qxtberkeley.h */,
);
path = berkeley;
sourceTree = "<group>";
};
65B360B8121C261E003EAD18 /* core */ = {
isa = PBXGroup;
children = (
65B360B9121C261E003EAD18 /* core.pri */,
65B360BA121C261E003EAD18 /* core.pro */,
65B360BB121C261E003EAD18 /* logengines */,
65B360C7121C261E003EAD18 /* qxtabstractconnectionmanager.cpp */,
65B360C8121C261E003EAD18 /* qxtabstractconnectionmanager.h */,
65B360C9121C261E003EAD18 /* qxtabstractsignalserializer.h */,
65B360CA121C261E003EAD18 /* qxtalgorithms.h */,
65B360CB121C261E003EAD18 /* qxtboundcfunction.h */,
65B360CC121C261E003EAD18 /* qxtboundfunction.h */,
65B360CD121C261E003EAD18 /* qxtboundfunctionbase.h */,
65B360CE121C261E003EAD18 /* qxtcommandoptions.cpp */,
65B360CF121C261E003EAD18 /* qxtcommandoptions.h */,
65B360D0121C261E003EAD18 /* qxtcore.h */,
65B360D1121C261E003EAD18 /* qxtcsvmodel.cpp */,
65B360D2121C261E003EAD18 /* qxtcsvmodel.h */,
65B360D3121C261E003EAD18 /* qxtdaemon.cpp */,
65B360D4121C261E003EAD18 /* qxtdaemon.h */,
65B360D5121C261E003EAD18 /* qxtdatastreamsignalserializer.cpp */,
65B360D6121C261E003EAD18 /* qxtdatastreamsignalserializer.h */,
65B360D7121C261E003EAD18 /* qxtdeplex.cpp */,
65B360D8121C261E003EAD18 /* qxtdeplex.h */,
65B360D9121C261E003EAD18 /* qxtdeplex_p.h */,
65B360DA121C261E003EAD18 /* qxterror.cpp */,
65B360DB121C261E003EAD18 /* qxterror.h */,
65B360DC121C261E003EAD18 /* qxtfifo.cpp */,
65B360DD121C261E003EAD18 /* qxtfifo.h */,
65B360DE121C261E003EAD18 /* qxtfilelock.cpp */,
65B360DF121C261E003EAD18 /* qxtfilelock.h */,
65B360E0121C261E003EAD18 /* qxtfilelock_p.h */,
65B360E1121C261E003EAD18 /* qxtfilelock_unix.cpp */,
65B360E2121C261E003EAD18 /* qxtfilelock_win.cpp */,
65B360E3121C261E003EAD18 /* qxtglobal.cpp */,
65B360E4121C261E003EAD18 /* qxtglobal.h */,
65B360E5121C261E003EAD18 /* qxthmac.cpp */,
65B360E6121C261E003EAD18 /* qxthmac.h */,
65B360E7121C261E003EAD18 /* qxtjob.cpp */,
65B360E8121C261E003EAD18 /* qxtjob.h */,
65B360E9121C261E003EAD18 /* qxtjob_p.h */,
65B360EA121C261E003EAD18 /* qxtjson.cpp */,
65B360EB121C261E003EAD18 /* qxtjson.h */,
65B360EC121C261E003EAD18 /* qxtlinesocket.cpp */,
65B360ED121C261E003EAD18 /* qxtlinesocket.h */,
65B360EE121C261E003EAD18 /* qxtlinesocket_p.h */,
65B360EF121C261E003EAD18 /* qxtlinkedtree.cpp */,
65B360F0121C261E003EAD18 /* qxtlinkedtree.h */,
65B360F1121C261E003EAD18 /* qxtlocale.cpp */,
65B360F2121C261E003EAD18 /* qxtlocale.h */,
65B360F3121C261E003EAD18 /* qxtlocale_data_p.h */,
65B360F4121C261E003EAD18 /* qxtlogger.cpp */,
65B360F5121C261E003EAD18 /* qxtlogger.h */,
65B360F6121C261E003EAD18 /* qxtlogger_p.h */,
65B360F7121C261E003EAD18 /* qxtloggerengine.cpp */,
65B360F8121C261E003EAD18 /* qxtloggerengine.h */,
65B360F9121C261E003EAD18 /* qxtlogstream.cpp */,
65B360FA121C261E003EAD18 /* qxtlogstream.h */,
65B360FB121C261E003EAD18 /* qxtlogstream_p.h */,
65B360FC121C261E003EAD18 /* qxtmetaobject.cpp */,
65B360FD121C261E003EAD18 /* qxtmetaobject.h */,
65B360FE121C261E003EAD18 /* qxtmetatype.h */,
65B360FF121C261E003EAD18 /* qxtmodelserializer.cpp */,
65B36100121C261E003EAD18 /* qxtmodelserializer.h */,
65B36101121C261E003EAD18 /* qxtmultisignalwaiter.cpp */,
65B36102121C261E003EAD18 /* qxtmultisignalwaiter.h */,
65B36103121C261E003EAD18 /* qxtnamespace.h */,
65B36104121C261F003EAD18 /* qxtnull.cpp */,
65B36105121C261F003EAD18 /* qxtnull.h */,
65B36106121C261F003EAD18 /* qxtnullable.h */,
65B36107121C261F003EAD18 /* qxtpairlist.h */,
65B36108121C261F003EAD18 /* qxtpimpl.h */,
65B36109121C261F003EAD18 /* qxtpipe.cpp */,
65B3610A121C261F003EAD18 /* qxtpipe.h */,
65B3610B121C261F003EAD18 /* qxtpipe_p.h */,
65B3610C121C261F003EAD18 /* qxtpointerlist.cpp */,
65B3610D121C261F003EAD18 /* qxtpointerlist.h */,
65B3610E121C261F003EAD18 /* qxtrpcservice.cpp */,
65B3610F121C261F003EAD18 /* qxtrpcservice.h */,
65B36110121C261F003EAD18 /* qxtrpcservice_p.h */,
65B36111121C261F003EAD18 /* qxtserialdevice.cpp */,
65B36112121C261F003EAD18 /* qxtserialdevice.h */,
65B36113121C261F003EAD18 /* qxtserialdevice_p.h */,
65B36114121C261F003EAD18 /* qxtserialdevice_unix.cpp */,
65B36115121C261F003EAD18 /* qxtsharedprivate.h */,
65B36116121C261F003EAD18 /* qxtsignalgroup.cpp */,
65B36117121C261F003EAD18 /* qxtsignalgroup.h */,
65B36118121C261F003EAD18 /* qxtsignalwaiter.cpp */,
65B36119121C261F003EAD18 /* qxtsignalwaiter.h */,
65B3611A121C261F003EAD18 /* qxtslotjob.cpp */,
65B3611B121C261F003EAD18 /* qxtslotjob.h */,
65B3611C121C261F003EAD18 /* qxtslotjob_p.h */,
65B3611D121C261F003EAD18 /* qxtslotmapper.cpp */,
65B3611E121C261F003EAD18 /* qxtslotmapper.h */,
65B3611F121C261F003EAD18 /* qxtstdio.cpp */,
65B36120121C261F003EAD18 /* qxtstdio.h */,
65B36121121C261F003EAD18 /* qxtstdio_p.h */,
65B36122121C261F003EAD18 /* qxtstdstreambufdevice.cpp */,
65B36123121C261F003EAD18 /* qxtstdstreambufdevice.h */,
65B36124121C261F003EAD18 /* qxttimer.cpp */,
65B36125121C261F003EAD18 /* qxttimer.h */,
65B36126121C261F003EAD18 /* qxttypelist.h */,
);
path = core;
sourceTree = "<group>";
};
65B360BB121C261E003EAD18 /* logengines */ = {
isa = PBXGroup;
children = (
65B360BC121C261E003EAD18 /* logengines.pri */,
65B360BD121C261E003EAD18 /* qxtabstractfileloggerengine.cpp */,
65B360BE121C261E003EAD18 /* qxtabstractfileloggerengine.h */,
65B360BF121C261E003EAD18 /* qxtabstractiologgerengine.cpp */,
65B360C0121C261E003EAD18 /* qxtabstractiologgerengine.h */,
65B360C1121C261E003EAD18 /* qxtbasicfileloggerengine.cpp */,
65B360C2121C261E003EAD18 /* qxtbasicfileloggerengine.h */,
65B360C3121C261E003EAD18 /* qxtbasicstdloggerengine.cpp */,
65B360C4121C261E003EAD18 /* qxtbasicstdloggerengine.h */,
65B360C5121C261E003EAD18 /* qxtxmlfileloggerengine.cpp */,
65B360C6121C261E003EAD18 /* qxtxmlfileloggerengine.h */,
);
path = logengines;
sourceTree = "<group>";
};
65B36127121C261F003EAD18 /* designer */ = {
isa = PBXGroup;
children = (
65B36128121C261F003EAD18 /* designer.pri */,
65B36129121C261F003EAD18 /* designer.pro */,
65B3612A121C261F003EAD18 /* Makefile */,
65B3612B121C261F003EAD18 /* qxtbasespinboxplugin.cpp */,
65B3612C121C261F003EAD18 /* qxtbasespinboxplugin.h */,
65B3612D121C261F003EAD18 /* qxtcheckcomboboxplugin.cpp */,
65B3612E121C261F003EAD18 /* qxtcheckcomboboxplugin.h */,
65B3612F121C261F003EAD18 /* qxtcountrycomboboxplugin.cpp */,
65B36130121C261F003EAD18 /* qxtcountrycomboboxplugin.h */,
65B36131121C261F003EAD18 /* qxtdesignerplugin.cpp */,
65B36132121C261F003EAD18 /* qxtdesignerplugin.h */,
65B36133121C261F003EAD18 /* qxtdesignerplugins.cpp */,
65B36134121C261F003EAD18 /* qxtdesignerplugins.h */,
65B36135121C261F003EAD18 /* qxtflowviewplugin.cpp */,
65B36136121C261F003EAD18 /* qxtflowviewplugin.h */,
65B36137121C261F003EAD18 /* qxtgroupboxplugin.cpp */,
65B36138121C261F003EAD18 /* qxtgroupboxplugin.h */,
65B36139121C261F003EAD18 /* qxtlabelplugin.cpp */,
65B3613A121C261F003EAD18 /* qxtlabelplugin.h */,
65B3613B121C261F003EAD18 /* qxtlanguagecomboboxplugin.cpp */,
65B3613C121C261F003EAD18 /* qxtlanguagecomboboxplugin.h */,
65B3613D121C261F003EAD18 /* qxtletterboxwidgetplugin.cpp */,
65B3613E121C261F003EAD18 /* qxtletterboxwidgetplugin.h */,
65B3613F121C261F003EAD18 /* qxtlineeditplugin.cpp */,
65B36140121C261F003EAD18 /* qxtlineeditplugin.h */,
65B36141121C261F003EAD18 /* qxtlistwidgetplugin.cpp */,
65B36142121C261F003EAD18 /* qxtlistwidgetplugin.h */,
65B36143121C261F003EAD18 /* qxtprogresslabelplugin.cpp */,
65B36144121C261F003EAD18 /* qxtprogresslabelplugin.h */,
65B36145121C261F003EAD18 /* qxtpushbuttonplugin.cpp */,
65B36146121C261F003EAD18 /* qxtpushbuttonplugin.h */,
65B36147121C261F003EAD18 /* qxtspansliderplugin.cpp */,
65B36148121C261F003EAD18 /* qxtspansliderplugin.h */,
65B36149121C261F003EAD18 /* qxtstarsplugin.cpp */,
65B3614A121C261F003EAD18 /* qxtstarsplugin.h */,
65B3614B121C261F003EAD18 /* qxtstringspinboxplugin.cpp */,
65B3614C121C261F003EAD18 /* qxtstringspinboxplugin.h */,
65B3614D121C261F003EAD18 /* qxttablewidgetplugin.cpp */,
65B3614E121C261F003EAD18 /* qxttablewidgetplugin.h */,
65B3614F121C261F003EAD18 /* qxttreewidgetplugin.cpp */,
65B36150121C261F003EAD18 /* qxttreewidgetplugin.h */,
65B36151121C261F003EAD18 /* resources.qrc */,
);
path = designer;
sourceTree = "<group>";
};
65B36152121C261F003EAD18 /* gui */ = {
isa = PBXGroup;
children = (
65B36153121C261F003EAD18 /* gui.pri */,
65B36154121C261F003EAD18 /* gui.pro */,
65B36155121C261F003EAD18 /* Makefile */,
65B36156121C261F003EAD18 /* qxtapplication.cpp */,
65B36157121C261F003EAD18 /* qxtapplication.h */,
65B36158121C261F003EAD18 /* qxtapplication_mac.cpp */,
65B36159121C261F003EAD18 /* qxtapplication_p.h */,
65B3615A121C261F003EAD18 /* qxtapplication_win.cpp */,
65B3615B121C261F003EAD18 /* qxtapplication_x11.cpp */,
65B3615C121C261F003EAD18 /* qxtbasespinbox.cpp */,
65B3615D121C261F003EAD18 /* qxtbasespinbox.h */,
65B3615E121C261F003EAD18 /* qxtcheckcombobox.cpp */,
65B3615F121C261F003EAD18 /* qxtcheckcombobox.h */,
65B36160121C261F003EAD18 /* qxtcheckcombobox_p.h */,
65B36161121C261F003EAD18 /* qxtconfigdialog.cpp */,
65B36162121C261F003EAD18 /* qxtconfigdialog.h */,
65B36163121C261F003EAD18 /* qxtconfigdialog_p.h */,
65B36164121C261F003EAD18 /* qxtconfigwidget.cpp */,
65B36165121C261F003EAD18 /* qxtconfigwidget.h */,
65B36166121C261F003EAD18 /* qxtconfigwidget_p.h */,
65B36167121C261F003EAD18 /* qxtconfirmationmessage.cpp */,
65B36168121C261F003EAD18 /* qxtconfirmationmessage.h */,
65B36169121C261F003EAD18 /* qxtcountrycombobox.cpp */,
65B3616A121C261F003EAD18 /* qxtcountrycombobox.h */,
65B3616B121C261F003EAD18 /* qxtcountrycombobox_p.h */,
65B3616C121C261F003EAD18 /* qxtcountrymodel.cpp */,
65B3616D121C261F003EAD18 /* qxtcountrymodel.h */,
65B3616E121C261F003EAD18 /* qxtcountrymodel_p.h */,
65B3616F121C261F003EAD18 /* qxtcrumbview.cpp */,
65B36170121C261F003EAD18 /* qxtcrumbview.h */,
65B36171121C261F003EAD18 /* qxtcrumbview_p.h */,
65B36172121C261F003EAD18 /* qxtfilterdialog.cpp */,
65B36173121C261F003EAD18 /* qxtfilterdialog.h */,
65B36174121C261F003EAD18 /* qxtfilterdialog_p.h */,
65B36175121C261F003EAD18 /* qxtflowview.cpp */,
65B36176121C261F003EAD18 /* qxtflowview.h */,
65B36177121C261F003EAD18 /* qxtflowview_p.cpp */,
65B36178121C261F003EAD18 /* qxtflowview_p.h */,
65B36179121C261F003EAD18 /* qxtglobalshortcut.cpp */,
65B3617A121C261F003EAD18 /* qxtglobalshortcut.h */,
65B3617B121C261F003EAD18 /* qxtglobalshortcut_mac.cpp */,
65B3617C121C261F003EAD18 /* qxtglobalshortcut_p.h */,
65B3617D121C261F003EAD18 /* qxtglobalshortcut_win.cpp */,
65B3617E121C261F003EAD18 /* qxtglobalshortcut_x11.cpp */,
65B3617F121C261F003EAD18 /* qxtgroupbox.cpp */,
65B36180121C261F003EAD18 /* qxtgroupbox.h */,
65B36181121C261F003EAD18 /* qxtgui.h */,
65B36182121C261F003EAD18 /* qxtheaderview.cpp */,
65B36183121C261F003EAD18 /* qxtheaderview.h */,
65B36184121C261F003EAD18 /* qxtitemdelegate.cpp */,
65B36185121C261F003EAD18 /* qxtitemdelegate.h */,
65B36186121C261F003EAD18 /* qxtitemdelegate_p.h */,
65B36187121C261F003EAD18 /* qxtitemeditorcreator.h */,
65B36188121C261F003EAD18 /* qxtitemeditorcreatorbase.h */,
65B36189121C261F003EAD18 /* qxtlabel.cpp */,
65B3618A121C261F003EAD18 /* qxtlabel.h */,
65B3618B121C261F003EAD18 /* qxtlanguagecombobox.cpp */,
65B3618C121C261F003EAD18 /* qxtlanguagecombobox.h */,
65B3618D121C261F003EAD18 /* qxtlanguagecombobox_p.h */,
65B3618E121C261F003EAD18 /* qxtletterboxwidget.cpp */,
65B3618F121C261F003EAD18 /* qxtletterboxwidget.h */,
65B36190121C261F003EAD18 /* qxtletterboxwidget_p.h */,
65B36191121C261F003EAD18 /* qxtlineedit.cpp */,
65B36192121C261F003EAD18 /* qxtlineedit.h */,
65B36193121C261F003EAD18 /* qxtlistwidget.cpp */,
65B36194121C261F003EAD18 /* qxtlistwidget.h */,
65B36195121C261F003EAD18 /* qxtlistwidget_p.h */,
65B36196121C261F003EAD18 /* qxtlistwidgetitem.cpp */,
65B36197121C261F003EAD18 /* qxtlistwidgetitem.h */,
65B36198121C261F003EAD18 /* qxtlookuplineedit.cpp */,
65B36199121C261F003EAD18 /* qxtlookuplineedit.h */,
65B3619A121C261F003EAD18 /* qxtlookuplineedit_p.h */,
65B3619B121C261F003EAD18 /* qxtnativeeventfilter.h */,
65B3619C121C261F003EAD18 /* qxtprogresslabel.cpp */,
65B3619D121C261F003EAD18 /* qxtprogresslabel.h */,
65B3619E121C261F003EAD18 /* qxtproxystyle.cpp */,
65B3619F121C261F003EAD18 /* qxtproxystyle.h */,
65B361A0121C261F003EAD18 /* qxtpushbutton.cpp */,
65B361A1121C261F003EAD18 /* qxtpushbutton.h */,
65B361A2121C261F003EAD18 /* qxtscheduleheaderwidget.cpp */,
65B361A3121C261F003EAD18 /* qxtscheduleheaderwidget.h */,
65B361A4121C261F003EAD18 /* qxtscheduleitemdelegate.cpp */,
65B361A5121C261F003EAD18 /* qxtscheduleitemdelegate.h */,
65B361A6121C261F003EAD18 /* qxtscheduleview.cpp */,
65B361A7121C261F003EAD18 /* qxtscheduleview.h */,
65B361A8121C261F003EAD18 /* qxtscheduleview_p.cpp */,
65B361A9121C261F003EAD18 /* qxtscheduleview_p.h */,
65B361AA121C261F003EAD18 /* qxtscheduleviewheadermodel_p.cpp */,
65B361AB121C261F003EAD18 /* qxtscheduleviewheadermodel_p.h */,
65B361AC121C261F003EAD18 /* qxtscreen.cpp */,
65B361AD121C261F003EAD18 /* qxtscreen.h */,
65B361AE121C261F003EAD18 /* qxtscreen_p.h */,
65B361AF121C261F003EAD18 /* qxtscreen_win.cpp */,
65B361B0121C261F003EAD18 /* qxtscreen_x11.cpp */,
65B361B1121C261F003EAD18 /* qxtsortfilterproxymodel.cpp */,
65B361B2121C261F003EAD18 /* qxtsortfilterproxymodel.h */,
65B361B3121C261F003EAD18 /* qxtspanslider.cpp */,
65B361B4121C261F003EAD18 /* qxtspanslider.h */,
65B361B5121C261F003EAD18 /* qxtspanslider_p.h */,
65B361B6121C261F003EAD18 /* qxtstandarditemeditorcreator.h */,
65B361B7121C261F003EAD18 /* qxtstars.cpp */,
65B361B8121C261F003EAD18 /* qxtstars.h */,
65B361B9121C261F003EAD18 /* qxtstringspinbox.cpp */,
65B361BA121C261F003EAD18 /* qxtstringspinbox.h */,
65B361BB121C261F003EAD18 /* qxtstringvalidator.cpp */,
65B361BC121C261F003EAD18 /* qxtstringvalidator.h */,
65B361BD121C261F003EAD18 /* qxtstringvalidator_p.h */,
65B361BE121C261F003EAD18 /* qxtstyleoptionscheduleviewitem.cpp */,
65B361BF121C261F003EAD18 /* qxtstyleoptionscheduleviewitem.h */,
65B361C0121C261F003EAD18 /* qxttablewidget.cpp */,
65B361C1121C261F003EAD18 /* qxttablewidget.h */,
65B361C2121C261F003EAD18 /* qxttablewidget_p.h */,
65B361C3121C261F003EAD18 /* qxttablewidgetitem.cpp */,
65B361C4121C261F003EAD18 /* qxttablewidgetitem.h */,
65B361C5121C261F003EAD18 /* qxttabwidget.cpp */,
65B361C6121C261F003EAD18 /* qxttabwidget.h */,
65B361C7121C261F003EAD18 /* qxttabwidget_p.h */,
65B361C8121C261F003EAD18 /* qxttooltip.cpp */,
65B361C9121C261F003EAD18 /* qxttooltip.h */,
65B361CA121C261F003EAD18 /* qxttooltip_p.h */,
65B361CB121C261F003EAD18 /* qxttreewidget.cpp */,
65B361CC121C261F003EAD18 /* qxttreewidget.h */,
65B361CD121C261F003EAD18 /* qxttreewidget_p.h */,
65B361CE121C261F003EAD18 /* qxttreewidgetitem.cpp */,
65B361CF121C261F003EAD18 /* qxttreewidgetitem.h */,
65B361D0121C261F003EAD18 /* qxtwindowsystem.cpp */,
65B361D1121C261F003EAD18 /* qxtwindowsystem.h */,
65B361D2121C261F003EAD18 /* qxtwindowsystem_win.cpp */,
65B361D3121C261F003EAD18 /* qxtwindowsystem_x11.cpp */,
65B361D4121C261F003EAD18 /* resources */,
65B362CD121C261F003EAD18 /* resources.qrc */,
);
path = gui;
sourceTree = "<group>";
};
65B361D4121C261F003EAD18 /* resources */ = {
isa = PBXGroup;
children = (
65B361D5121C261F003EAD18 /* flags */,
);
path = resources;
sourceTree = "<group>";
};
65B361D5121C261F003EAD18 /* flags */ = {
isa = PBXGroup;
children = (
65B361D6121C261F003EAD18 /* AD.png */,
65B361D7121C261F003EAD18 /* AE.png */,
65B361D8121C261F003EAD18 /* AF.png */,
65B361D9121C261F003EAD18 /* AG.png */,
65B361DA121C261F003EAD18 /* AI.png */,
65B361DB121C261F003EAD18 /* AL.png */,
65B361DC121C261F003EAD18 /* AM.png */,
65B361DD121C261F003EAD18 /* AN.png */,
65B361DE121C261F003EAD18 /* AO.png */,
65B361DF121C261F003EAD18 /* AQ.png */,
65B361E0121C261F003EAD18 /* AR.png */,
65B361E1121C261F003EAD18 /* AS.png */,
65B361E2121C261F003EAD18 /* AT.png */,
65B361E3121C261F003EAD18 /* AU.png */,
65B361E4121C261F003EAD18 /* AW.png */,
65B361E5121C261F003EAD18 /* AX.png */,
65B361E6121C261F003EAD18 /* AZ.png */,
65B361E7121C261F003EAD18 /* BA.png */,
65B361E8121C261F003EAD18 /* BB.png */,
65B361E9121C261F003EAD18 /* BD.png */,
65B361EA121C261F003EAD18 /* BE.png */,
65B361EB121C261F003EAD18 /* BF.png */,
65B361EC121C261F003EAD18 /* BG.png */,
65B361ED121C261F003EAD18 /* BH.png */,
65B361EE121C261F003EAD18 /* BI.png */,
65B361EF121C261F003EAD18 /* BJ.png */,
65B361F0121C261F003EAD18 /* BM.png */,
65B361F1121C261F003EAD18 /* BN.png */,
65B361F2121C261F003EAD18 /* BO.png */,
65B361F3121C261F003EAD18 /* BR.png */,
65B361F4121C261F003EAD18 /* BS.png */,
65B361F5121C261F003EAD18 /* BT.png */,
65B361F6121C261F003EAD18 /* BV.png */,
65B361F7121C261F003EAD18 /* BW.png */,
65B361F8121C261F003EAD18 /* BY.png */,
65B361F9121C261F003EAD18 /* BZ.png */,
65B361FA121C261F003EAD18 /* C.png */,
65B361FB121C261F003EAD18 /* CA.png */,
65B361FC121C261F003EAD18 /* CC.png */,
65B361FD121C261F003EAD18 /* CD.png */,
65B361FE121C261F003EAD18 /* CF.png */,
65B361FF121C261F003EAD18 /* CG.png */,
65B36200121C261F003EAD18 /* CH.png */,
65B36201121C261F003EAD18 /* CI.png */,
65B36202121C261F003EAD18 /* CK.png */,
65B36203121C261F003EAD18 /* CL.png */,
65B36204121C261F003EAD18 /* CM.png */,
65B36205121C261F003EAD18 /* CN.png */,
65B36206121C261F003EAD18 /* CO.png */,
65B36207121C261F003EAD18 /* CR.png */,
65B36208121C261F003EAD18 /* CS.png */,
65B36209121C261F003EAD18 /* CU.png */,
65B3620A121C261F003EAD18 /* CV.png */,
65B3620B121C261F003EAD18 /* CX.png */,
65B3620C121C261F003EAD18 /* CY.png */,
65B3620D121C261F003EAD18 /* CZ.png */,
65B3620E121C261F003EAD18 /* DE.png */,
65B3620F121C261F003EAD18 /* DJ.png */,
65B36210121C261F003EAD18 /* DK.png */,
65B36211121C261F003EAD18 /* DM.png */,
65B36212121C261F003EAD18 /* DO.png */,
65B36213121C261F003EAD18 /* DZ.png */,
65B36214121C261F003EAD18 /* EC.png */,
65B36215121C261F003EAD18 /* EE.png */,
65B36216121C261F003EAD18 /* EG.png */,
65B36217121C261F003EAD18 /* EH.png */,
65B36218121C261F003EAD18 /* ER.png */,
65B36219121C261F003EAD18 /* ES.png */,
65B3621A121C261F003EAD18 /* ET.png */,
65B3621B121C261F003EAD18 /* FI.png */,
65B3621C121C261F003EAD18 /* FJ.png */,
65B3621D121C261F003EAD18 /* FK.png */,
65B3621E121C261F003EAD18 /* FM.png */,
65B3621F121C261F003EAD18 /* FO.png */,
65B36220121C261F003EAD18 /* FR.png */,
65B36221121C261F003EAD18 /* FX.png */,
65B36222121C261F003EAD18 /* GA.png */,
65B36223121C261F003EAD18 /* GB.png */,
65B36224121C261F003EAD18 /* GD.png */,
65B36225121C261F003EAD18 /* GE.png */,
65B36226121C261F003EAD18 /* GF.png */,
65B36227121C261F003EAD18 /* GG.png */,
65B36228121C261F003EAD18 /* GH.png */,
65B36229121C261F003EAD18 /* GI.png */,
65B3622A121C261F003EAD18 /* GL.png */,
65B3622B121C261F003EAD18 /* GM.png */,
65B3622C121C261F003EAD18 /* GN.png */,
65B3622D121C261F003EAD18 /* GP.png */,
65B3622E121C261F003EAD18 /* GQ.png */,
65B3622F121C261F003EAD18 /* GR.png */,
65B36230121C261F003EAD18 /* GS.png */,
65B36231121C261F003EAD18 /* GT.png */,
65B36232121C261F003EAD18 /* GU.png */,
65B36233121C261F003EAD18 /* GW.png */,
65B36234121C261F003EAD18 /* GY.png */,
65B36235121C261F003EAD18 /* HK.png */,
65B36236121C261F003EAD18 /* HM.png */,
65B36237121C261F003EAD18 /* HN.png */,
65B36238121C261F003EAD18 /* HR.png */,
65B36239121C261F003EAD18 /* HT.png */,
65B3623A121C261F003EAD18 /* HU.png */,
65B3623B121C261F003EAD18 /* ID.png */,
65B3623C121C261F003EAD18 /* IE.png */,
65B3623D121C261F003EAD18 /* IL.png */,
65B3623E121C261F003EAD18 /* IM.png */,
65B3623F121C261F003EAD18 /* IN.png */,
65B36240121C261F003EAD18 /* IO.png */,
65B36241121C261F003EAD18 /* IQ.png */,
65B36242121C261F003EAD18 /* IR.png */,
65B36243121C261F003EAD18 /* IS.png */,
65B36244121C261F003EAD18 /* IT.png */,
65B36245121C261F003EAD18 /* JE.png */,
65B36246121C261F003EAD18 /* JM.png */,
65B36247121C261F003EAD18 /* JO.png */,
65B36248121C261F003EAD18 /* JP.png */,
65B36249121C261F003EAD18 /* KE.png */,
65B3624A121C261F003EAD18 /* KG.png */,
65B3624B121C261F003EAD18 /* KH.png */,
65B3624C121C261F003EAD18 /* KI.png */,
65B3624D121C261F003EAD18 /* KM.png */,
65B3624E121C261F003EAD18 /* KN.png */,
65B3624F121C261F003EAD18 /* KP.png */,
65B36250121C261F003EAD18 /* KR.png */,
65B36251121C261F003EAD18 /* KW.png */,
65B36252121C261F003EAD18 /* KY.png */,
65B36253121C261F003EAD18 /* KZ.png */,
65B36254121C261F003EAD18 /* LA.png */,
65B36255121C261F003EAD18 /* LB.png */,
65B36256121C261F003EAD18 /* LC.png */,
65B36257121C261F003EAD18 /* LI.png */,
65B36258121C261F003EAD18 /* LK.png */,
65B36259121C261F003EAD18 /* LR.png */,
65B3625A121C261F003EAD18 /* LS.png */,
65B3625B121C261F003EAD18 /* LT.png */,
65B3625C121C261F003EAD18 /* LU.png */,
65B3625D121C261F003EAD18 /* LV.png */,
65B3625E121C261F003EAD18 /* LY.png */,
65B3625F121C261F003EAD18 /* MA.png */,
65B36260121C261F003EAD18 /* MC.png */,
65B36261121C261F003EAD18 /* MD.png */,
65B36262121C261F003EAD18 /* ME.png */,
65B36263121C261F003EAD18 /* MG.png */,
65B36264121C261F003EAD18 /* MH.png */,
65B36265121C261F003EAD18 /* MK.png */,
65B36266121C261F003EAD18 /* ML.png */,
65B36267121C261F003EAD18 /* MM.png */,
65B36268121C261F003EAD18 /* MN.png */,
65B36269121C261F003EAD18 /* MO.png */,
65B3626A121C261F003EAD18 /* MP.png */,
65B3626B121C261F003EAD18 /* MQ.png */,
65B3626C121C261F003EAD18 /* MR.png */,
65B3626D121C261F003EAD18 /* MS.png */,
65B3626E121C261F003EAD18 /* MT.png */,
65B3626F121C261F003EAD18 /* MU.png */,
65B36270121C261F003EAD18 /* MV.png */,
65B36271121C261F003EAD18 /* MW.png */,
65B36272121C261F003EAD18 /* MX.png */,
65B36273121C261F003EAD18 /* MY.png */,
65B36274121C261F003EAD18 /* MZ.png */,
65B36275121C261F003EAD18 /* NA.png */,
65B36276121C261F003EAD18 /* NC.png */,
65B36277121C261F003EAD18 /* NE.png */,
65B36278121C261F003EAD18 /* NF.png */,
65B36279121C261F003EAD18 /* NG.png */,
65B3627A121C261F003EAD18 /* NI.png */,
65B3627B121C261F003EAD18 /* NL.png */,
65B3627C121C261F003EAD18 /* NO.png */,
65B3627D121C261F003EAD18 /* NP.png */,
65B3627E121C261F003EAD18 /* NR.png */,
65B3627F121C261F003EAD18 /* NU.png */,
65B36280121C261F003EAD18 /* NZ.png */,
65B36281121C261F003EAD18 /* OM.png */,
65B36282121C261F003EAD18 /* PA.png */,
65B36283121C261F003EAD18 /* PE.png */,
65B36284121C261F003EAD18 /* PF.png */,
65B36285121C261F003EAD18 /* PG.png */,
65B36286121C261F003EAD18 /* PH.png */,
65B36287121C261F003EAD18 /* PK.png */,
65B36288121C261F003EAD18 /* PL.png */,
65B36289121C261F003EAD18 /* PM.png */,
65B3628A121C261F003EAD18 /* PN.png */,
65B3628B121C261F003EAD18 /* PR.png */,
65B3628C121C261F003EAD18 /* PS.png */,
65B3628D121C261F003EAD18 /* PT.png */,
65B3628E121C261F003EAD18 /* PW.png */,
65B3628F121C261F003EAD18 /* PY.png */,
65B36290121C261F003EAD18 /* QA.png */,
65B36291121C261F003EAD18 /* RE.png */,
65B36292121C261F003EAD18 /* RO.png */,
65B36293121C261F003EAD18 /* RS.png */,
65B36294121C261F003EAD18 /* RU.png */,
65B36295121C261F003EAD18 /* RW.png */,
65B36296121C261F003EAD18 /* SA.png */,
65B36297121C261F003EAD18 /* SB.png */,
65B36298121C261F003EAD18 /* SC.png */,
65B36299121C261F003EAD18 /* SD.png */,
65B3629A121C261F003EAD18 /* SE.png */,
65B3629B121C261F003EAD18 /* SG.png */,
65B3629C121C261F003EAD18 /* SH.png */,
65B3629D121C261F003EAD18 /* SI.png */,
65B3629E121C261F003EAD18 /* SJ.png */,
65B3629F121C261F003EAD18 /* SK.png */,
65B362A0121C261F003EAD18 /* SL.png */,
65B362A1121C261F003EAD18 /* SM.png */,
65B362A2121C261F003EAD18 /* SN.png */,
65B362A3121C261F003EAD18 /* SO.png */,
65B362A4121C261F003EAD18 /* SR.png */,
65B362A5121C261F003EAD18 /* ST.png */,
65B362A6121C261F003EAD18 /* SV.png */,
65B362A7121C261F003EAD18 /* SY.png */,
65B362A8121C261F003EAD18 /* SZ.png */,
65B362A9121C261F003EAD18 /* TC.png */,
65B362AA121C261F003EAD18 /* TD.png */,
65B362AB121C261F003EAD18 /* TF.png */,
65B362AC121C261F003EAD18 /* TG.png */,
65B362AD121C261F003EAD18 /* TH.png */,
65B362AE121C261F003EAD18 /* TJ.png */,
65B362AF121C261F003EAD18 /* TK.png */,
65B362B0121C261F003EAD18 /* TL.png */,
65B362B1121C261F003EAD18 /* TM.png */,
65B362B2121C261F003EAD18 /* TN.png */,
65B362B3121C261F003EAD18 /* TO.png */,
65B362B4121C261F003EAD18 /* TR.png */,
65B362B5121C261F003EAD18 /* TT.png */,
65B362B6121C261F003EAD18 /* TV.png */,
65B362B7121C261F003EAD18 /* TW.png */,
65B362B8121C261F003EAD18 /* TZ.png */,
65B362B9121C261F003EAD18 /* UA.png */,
65B362BA121C261F003EAD18 /* UG.png */,
65B362BB121C261F003EAD18 /* UM.png */,
65B362BC121C261F003EAD18 /* US.png */,
65B362BD121C261F003EAD18 /* UY.png */,
65B362BE121C261F003EAD18 /* UZ.png */,
65B362BF121C261F003EAD18 /* VA.png */,
65B362C0121C261F003EAD18 /* VC.png */,
65B362C1121C261F003EAD18 /* VE.png */,
65B362C2121C261F003EAD18 /* VG.png */,
65B362C3121C261F003EAD18 /* VI.png */,
65B362C4121C261F003EAD18 /* VN.png */,
65B362C5121C261F003EAD18 /* VU.png */,
65B362C6121C261F003EAD18 /* WF.png */,
65B362C7121C261F003EAD18 /* WS.png */,
65B362C8121C261F003EAD18 /* YE.png */,
65B362C9121C261F003EAD18 /* YT.png */,
65B362CA121C261F003EAD18 /* ZA.png */,
65B362CB121C261F003EAD18 /* ZM.png */,
65B362CC121C261F003EAD18 /* ZW.png */,
);
path = flags;
sourceTree = "<group>";
};
65B362CE121C261F003EAD18 /* network */ = {
isa = PBXGroup;
children = (
65B362CF121C261F003EAD18 /* Makefile */,
65B362D0121C261F003EAD18 /* network.pri */,
65B362D1121C261F003EAD18 /* network.pro */,
65B362D2121C261F003EAD18 /* qxtjsonrpccall.cpp */,
65B362D3121C261F003EAD18 /* qxtjsonrpccall.h */,
65B362D4121C261F003EAD18 /* qxtjsonrpcclient.cpp */,
65B362D5121C261F003EAD18 /* qxtjsonrpcclient.h */,
65B362D6121C261F003EAD18 /* qxtmail_p.h */,
65B362D7121C261F003EAD18 /* qxtmailattachment.cpp */,
65B362D8121C261F003EAD18 /* qxtmailattachment.h */,
65B362D9121C261F003EAD18 /* qxtmailmessage.cpp */,
65B362DA121C261F003EAD18 /* qxtmailmessage.h */,
65B362DB121C261F003EAD18 /* qxtnetwork.h */,
65B362DC121C261F003EAD18 /* qxtrpcpeer.cpp */,
65B362DD121C261F003EAD18 /* qxtrpcpeer.h */,
65B362DE121C261F003EAD18 /* qxtsmtp.cpp */,
65B362DF121C261F003EAD18 /* qxtsmtp.h */,
65B362E0121C261F003EAD18 /* qxtsmtp_p.h */,
65B362E1121C261F003EAD18 /* qxttcpconnectionmanager.cpp */,
65B362E2121C261F003EAD18 /* qxttcpconnectionmanager.h */,
65B362E3121C261F003EAD18 /* qxttcpconnectionmanager_p.h */,
65B362E4121C261F003EAD18 /* qxtxmlrpc_p.cpp */,
65B362E5121C261F003EAD18 /* qxtxmlrpc_p.h */,
65B362E6121C261F003EAD18 /* qxtxmlrpccall.cpp */,
65B362E7121C261F003EAD18 /* qxtxmlrpccall.h */,
65B362E8121C261F003EAD18 /* qxtxmlrpcclient.cpp */,
65B362E9121C261F003EAD18 /* qxtxmlrpcclient.h */,
);
path = network;
sourceTree = "<group>";
};
65B362EC121C261F003EAD18 /* sql */ = {
isa = PBXGroup;
children = (
65B362ED121C261F003EAD18 /* Makefile */,
65B362EE121C261F003EAD18 /* qxtsql.h */,
65B362EF121C261F003EAD18 /* qxtsqlpackage.cpp */,
65B362F0121C261F003EAD18 /* qxtsqlpackage.h */,
65B362F1121C261F003EAD18 /* qxtsqlpackagemodel.cpp */,
65B362F2121C261F003EAD18 /* qxtsqlpackagemodel.h */,
65B362F3121C261F003EAD18 /* sql.pri */,
65B362F4121C261F003EAD18 /* sql.pro */,
);
path = sql;
sourceTree = "<group>";
};
65B362F5121C261F003EAD18 /* web */ = {
isa = PBXGroup;
children = (
65B362F6121C261F003EAD18 /* Makefile */,
65B362F7121C261F003EAD18 /* qxtabstracthttpconnector.cpp */,
65B362F8121C261F003EAD18 /* qxtabstracthttpconnector.h */,
65B362F9121C261F003EAD18 /* qxtabstractwebservice.cpp */,
65B362FA121C261F003EAD18 /* qxtabstractwebservice.h */,
65B362FB121C261F003EAD18 /* qxtabstractwebsessionmanager.cpp */,
65B362FC121C261F003EAD18 /* qxtabstractwebsessionmanager.h */,
65B362FD121C261F003EAD18 /* qxtabstractwebsessionmanager_p.h */,
65B362FE121C261F003EAD18 /* qxthtmltemplate.cpp */,
65B362FF121C261F003EAD18 /* qxthtmltemplate.h */,
65B36300121C261F003EAD18 /* qxthttpserverconnector.cpp */,
65B36301121C261F003EAD18 /* qxthttpsessionmanager.cpp */,
65B36302121C261F003EAD18 /* qxthttpsessionmanager.h */,
65B36303121C261F003EAD18 /* qxtscgiserverconnector.cpp */,
65B36304121C261F003EAD18 /* qxtweb.h */,
65B36305121C261F003EAD18 /* qxtwebcgiservice.cpp */,
65B36306121C261F003EAD18 /* qxtwebcgiservice.h */,
65B36307121C261F003EAD18 /* qxtwebcgiservice_p.h */,
65B36308121C261F003EAD18 /* qxtwebcontent.cpp */,
65B36309121C261F003EAD18 /* qxtwebcontent.h */,
65B3630A121C261F003EAD18 /* qxtwebevent.cpp */,
65B3630B121C261F003EAD18 /* qxtwebevent.h */,
65B3630C121C261F003EAD18 /* qxtwebservicedirectory.cpp */,
65B3630D121C261F003EAD18 /* qxtwebservicedirectory.h */,
65B3630E121C261F003EAD18 /* qxtwebservicedirectory_p.h */,
65B3630F121C261F003EAD18 /* qxtwebslotservice.cpp */,
65B36310121C261F003EAD18 /* qxtwebslotservice.h */,
65B36311121C261F003EAD18 /* web.pri */,
65B36312121C261F003EAD18 /* web.pro */,
);
path = web;
sourceTree = "<group>";
};
65B36313121C261F003EAD18 /* zeroconf */ = {
isa = PBXGroup;
children = (
65B36314121C261F003EAD18 /* qxtavahipoll.cpp */,
65B36315121C261F003EAD18 /* qxtavahipoll.h */,
65B36316121C261F003EAD18 /* qxtavahipoll_p.h */,
65B36317121C261F003EAD18 /* qxtdiscoverableservice.cpp */,
65B36318121C261F003EAD18 /* qxtdiscoverableservice.h */,
65B36319121C261F003EAD18 /* qxtdiscoverableservice_p.h */,
65B3631A121C261F003EAD18 /* qxtdiscoverableservicename.cpp */,
65B3631B121C261F003EAD18 /* qxtdiscoverableservicename.h */,
65B3631C121C261F003EAD18 /* qxtmdns_avahi.cpp */,
65B3631D121C261F003EAD18 /* qxtmdns_avahi.h */,
65B3631E121C261F003EAD18 /* qxtmdns_avahi_p.h */,
65B3631F121C261F003EAD18 /* qxtmdns_bonjour.cpp */,
65B36320121C261F003EAD18 /* qxtmdns_bonjour.h */,
65B36321121C261F003EAD18 /* qxtservicebrowser.cpp */,
65B36322121C261F003EAD18 /* qxtservicebrowser.h */,
65B36323121C261F003EAD18 /* qxtservicebrowser_p.h */,
65B36324121C261F003EAD18 /* qxtzeroconf.h */,
65B36325121C261F003EAD18 /* zeroconf.pri */,
65B36326121C261F003EAD18 /* zeroconf.pro */,
);
path = zeroconf;
sourceTree = "<group>";
};
65B36327121C261F003EAD18 /* translations */ = {
isa = PBXGroup;
children = (
65B36328121C261F003EAD18 /* gen_qlocale.cpp */,
65B36329121C261F003EAD18 /* qxt_de.ts */,
65B3632A121C261F003EAD18 /* qxt_en.ts */,
65B3632B121C261F003EAD18 /* qxt_es.ts */,
65B3632C121C261F003EAD18 /* qxt_fi.ts */,
65B3632D121C261F003EAD18 /* qxt_fr.ts */,
65B3632E121C261F003EAD18 /* qxt_it.ts */,
);
path = translations;
sourceTree = "<group>";
};
65B36330121C261F003EAD18 /* opmapcontrol */ = {
isa = PBXGroup;
children = (
65B36331121C261F003EAD18 /* opmapcontrol.h */,
65B36332121C261F003EAD18 /* opmapcontrol.pri */,
65B36333121C261F003EAD18 /* opmapcontrol.pro */,
65B36334121C261F003EAD18 /* src */,
);
path = opmapcontrol;
sourceTree = "<group>";
};
65B36334121C261F003EAD18 /* src */ = {
isa = PBXGroup;
children = (
65B36335121C261F003EAD18 /* common.pri */,
65B36336121C261F003EAD18 /* core */,
65B3635C121C261F003EAD18 /* internals */,
65B3637F121C261F003EAD18 /* mapwidget */,
65B363A3121C261F003EAD18 /* src.pro */,
);
path = src;
sourceTree = "<group>";
};
65B36336121C261F003EAD18 /* core */ = {
isa = PBXGroup;
children = (
65B36337121C261F003EAD18 /* accessmode.h */,
65B36338121C261F003EAD18 /* alllayersoftype.cpp */,
65B36339121C261F003EAD18 /* alllayersoftype.h */,
65B3633A121C261F003EAD18 /* cache.cpp */,
65B3633B121C261F003EAD18 /* cache.h */,
65B3633C121C261F003EAD18 /* cacheitemqueue.cpp */,
65B3633D121C261F003EAD18 /* cacheitemqueue.h */,
65B3633E121C261F003EAD18 /* core.pro */,
65B3633F121C261F003EAD18 /* debugheader.h */,
65B36340121C261F003EAD18 /* geodecoderstatus.h */,
65B36341121C261F003EAD18 /* kibertilecache.cpp */,
65B36342121C261F003EAD18 /* kibertilecache.h */,
65B36343121C261F003EAD18 /* languagetype.cpp */,
65B36344121C261F003EAD18 /* languagetype.h */,
65B36345121C261F003EAD18 /* maptype.h */,
65B36346121C261F003EAD18 /* memorycache.cpp */,
65B36347121C261F003EAD18 /* memorycache.h */,
65B36348121C261F003EAD18 /* opmaps.cpp */,
65B36349121C261F003EAD18 /* opmaps.h */,
65B3634A121C261F003EAD18 /* placemark.cpp */,
65B3634B121C261F003EAD18 /* placemark.h */,
65B3634C121C261F003EAD18 /* point.cpp */,
65B3634D121C261F003EAD18 /* point.h */,
65B3634E121C261F003EAD18 /* providerstrings.cpp */,
65B3634F121C261F003EAD18 /* providerstrings.h */,
65B36350121C261F003EAD18 /* pureimage.cpp */,
65B36351121C261F003EAD18 /* pureimage.h */,
65B36352121C261F003EAD18 /* pureimagecache.cpp */,
65B36353121C261F003EAD18 /* pureimagecache.h */,
65B36354121C261F003EAD18 /* rawtile.cpp */,
65B36355121C261F003EAD18 /* rawtile.h */,
65B36356121C261F003EAD18 /* size.cpp */,
65B36357121C261F003EAD18 /* size.h */,
65B36358121C261F003EAD18 /* tilecachequeue.cpp */,
65B36359121C261F003EAD18 /* tilecachequeue.h */,
65B3635A121C261F003EAD18 /* urlfactory.cpp */,
65B3635B121C261F003EAD18 /* urlfactory.h */,
);
path = core;
sourceTree = "<group>";
};
65B3635C121C261F003EAD18 /* internals */ = {
isa = PBXGroup;
children = (
65B3635D121C261F003EAD18 /* copyrightstrings.h */,
65B3635E121C261F003EAD18 /* core.cpp */,
65B3635F121C261F003EAD18 /* core.h */,
65B36360121C261F003EAD18 /* debugheader.h */,
65B36361121C261F003EAD18 /* internals.pro */,
65B36362121C261F003EAD18 /* loadtask.cpp */,
65B36363121C261F003EAD18 /* loadtask.h */,
65B36364121C261F003EAD18 /* MouseWheelZoomType.cpp */,
65B36365121C261F003EAD18 /* mousewheelzoomtype.h */,
65B36366121C261F003EAD18 /* pointlatlng.cpp */,
65B36367121C261F003EAD18 /* pointlatlng.h */,
65B36368121C261F003EAD18 /* projections */,
65B36373121C261F003EAD18 /* pureprojection.cpp */,
65B36374121C261F003EAD18 /* pureprojection.h */,
65B36375121C261F003EAD18 /* rectangle.cpp */,
65B36376121C261F003EAD18 /* rectangle.h */,
65B36377121C261F003EAD18 /* rectlatlng.cpp */,
65B36378121C261F003EAD18 /* rectlatlng.h */,
65B36379121C261F003EAD18 /* sizelatlng.cpp */,
65B3637A121C261F003EAD18 /* sizelatlng.h */,
65B3637B121C261F003EAD18 /* tile.cpp */,
65B3637C121C261F003EAD18 /* tile.h */,
65B3637D121C261F003EAD18 /* tilematrix.cpp */,
65B3637E121C261F003EAD18 /* tilematrix.h */,
);
path = internals;
sourceTree = "<group>";
};
65B36368121C261F003EAD18 /* projections */ = {
isa = PBXGroup;
children = (
65B36369121C261F003EAD18 /* lks94projection.cpp */,
65B3636A121C261F003EAD18 /* lks94projection.h */,
65B3636B121C261F003EAD18 /* mercatorprojection.cpp */,
65B3636C121C261F003EAD18 /* mercatorprojection.h */,
65B3636D121C261F003EAD18 /* mercatorprojectionyandex.cpp */,
65B3636E121C261F003EAD18 /* mercatorprojectionyandex.h */,
65B3636F121C261F003EAD18 /* platecarreeprojection.cpp */,
65B36370121C261F003EAD18 /* platecarreeprojection.h */,
65B36371121C261F003EAD18 /* platecarreeprojectionpergo.cpp */,
65B36372121C261F003EAD18 /* platecarreeprojectionpergo.h */,
);
path = projections;
sourceTree = "<group>";
};
65B3637F121C261F003EAD18 /* mapwidget */ = {
isa = PBXGroup;
children = (
65B36380121C261F003EAD18 /* configuration.cpp */,
65B36381121C261F003EAD18 /* configuration.h */,
65B36382121C261F003EAD18 /* homeitem.cpp */,
65B36383121C261F003EAD18 /* homeitem.h */,
65B36384121C261F003EAD18 /* images */,
65B36390121C261F003EAD18 /* mapgraphicitem.cpp */,
65B36391121C261F003EAD18 /* mapgraphicitem.h */,
65B36392121C261F003EAD18 /* mapresources.qrc */,
65B36393121C261F003EAD18 /* mapripform.cpp */,
65B36394121C261F003EAD18 /* mapripform.h */,
65B36395121C261F003EAD18 /* mapripform.ui */,
65B36396121C261F003EAD18 /* mapripper.cpp */,
65B36397121C261F003EAD18 /* mapripper.h */,
65B36398121C261F003EAD18 /* mapwidget.pro */,
65B36399121C261F003EAD18 /* opmapwidget.cpp */,
65B3639A121C261F003EAD18 /* opmapwidget.h */,
65B3639B121C261F003EAD18 /* trailitem.cpp */,
65B3639C121C261F003EAD18 /* trailitem.h */,
65B3639D121C261F003EAD18 /* uavitem.cpp */,
65B3639E121C261F003EAD18 /* uavitem.h */,
65B3639F121C261F003EAD18 /* uavmapfollowtype.h */,
65B363A0121C261F003EAD18 /* uavtrailtype.h */,
65B363A1121C261F003EAD18 /* waypointitem.cpp */,
65B363A2121C261F003EAD18 /* waypointitem.h */,
);
path = mapwidget;
sourceTree = "<group>";
};
65B36384121C261F003EAD18 /* images */ = {
isa = PBXGroup;
children = (
65B36385121C261F003EAD18 /* airplane.png */,
65B36386121C261F003EAD18 /* airplane.svg */,
65B36387121C261F003EAD18 /* airplanepip.png */,
65B36388121C261F003EAD18 /* bigMarkerGreen.png */,
65B36389121C261F003EAD18 /* compas.svg */,
65B3638A121C261F003EAD18 /* EasystarBlue.png */,
65B3638B121C261F003EAD18 /* home.png */,
65B3638C121C261F003EAD18 /* home.svg */,
65B3638D121C261F003EAD18 /* home2.svg */,
65B3638E121C261F003EAD18 /* mapquad.png */,
65B3638F121C261F003EAD18 /* marker.png */,
);
path = images;
sourceTree = "<group>";
};
65B363A4121C261F003EAD18 /* qextserialport */ = {
isa = PBXGroup;
children = (
65B363A5121C261F003EAD18 /* qextserialport.pri */,
65B363A6121C261F003EAD18 /* qextserialport.pro */,
65B363A7121C261F003EAD18 /* src */,
);
path = qextserialport;
sourceTree = "<group>";
};
65B363A7121C261F003EAD18 /* src */ = {
isa = PBXGroup;
children = (
65B363A8121C261F003EAD18 /* posix_qextserialport.cpp */,
65B363A9121C261F003EAD18 /* qextserialenumerator.h */,
65B363AA121C261F003EAD18 /* qextserialenumerator_osx.cpp */,
65B363AB121C261F003EAD18 /* qextserialenumerator_unix.cpp */,
65B363AC121C261F003EAD18 /* qextserialenumerator_win.cpp */,
65B363AD121C261F003EAD18 /* qextserialport.cpp */,
65B363AE121C261F003EAD18 /* qextserialport.h */,
65B363AF121C261F003EAD18 /* qextserialport_global.h */,
65B363B0121C261F003EAD18 /* src.pro */,
65B363B1121C261F003EAD18 /* win_qextserialport.cpp */,
);
path = src;
sourceTree = "<group>";
};
65B363B2121C261F003EAD18 /* qtconcurrent */ = {
isa = PBXGroup;
children = (
65B363B3121C261F003EAD18 /* multitask.h */,
65B363B4121C261F003EAD18 /* qtconcurrent.pri */,
65B363B5121C261F003EAD18 /* qtconcurrent.pro */,
65B363B6121C261F003EAD18 /* qtconcurrent_global.h */,
65B363B7121C261F003EAD18 /* QtConcurrentTools */,
65B363B8121C261F003EAD18 /* runextensions.h */,
);
path = qtconcurrent;
sourceTree = "<group>";
};
65B363B9121C261F003EAD18 /* qwt */ = {
isa = PBXGroup;
children = (
65B363BA121C261F003EAD18 /* COPYING */,
65B363BB121C261F003EAD18 /* qwt.pri */,
65B363BC121C261F003EAD18 /* qwt.pro */,
65B363BD121C261F003EAD18 /* qwtconfig.pri */,
65B363BE121C261F003EAD18 /* src */,
);
path = qwt;
sourceTree = "<group>";
};
65B363BE121C261F003EAD18 /* src */ = {
isa = PBXGroup;
children = (
65B363BF121C261F003EAD18 /* qwt.h */,
65B363C0121C261F003EAD18 /* qwt_abstract_scale.cpp */,
65B363C1121C261F003EAD18 /* qwt_abstract_scale.h */,
65B363C2121C261F003EAD18 /* qwt_abstract_scale_draw.cpp */,
65B363C3121C261F003EAD18 /* qwt_abstract_scale_draw.h */,
65B363C4121C261F003EAD18 /* qwt_abstract_slider.cpp */,
65B363C5121C261F003EAD18 /* qwt_abstract_slider.h */,
65B363C6121C261F003EAD18 /* qwt_analog_clock.cpp */,
65B363C7121C261F003EAD18 /* qwt_analog_clock.h */,
65B363C8121C261F003EAD18 /* qwt_array.h */,
65B363C9121C261F003EAD18 /* qwt_arrow_button.cpp */,
65B363CA121C261F003EAD18 /* qwt_arrow_button.h */,
65B363CB121C261F003EAD18 /* qwt_clipper.cpp */,
65B363CC121C261F003EAD18 /* qwt_clipper.h */,
65B363CD121C261F003EAD18 /* qwt_color_map.cpp */,
65B363CE121C261F003EAD18 /* qwt_color_map.h */,
65B363CF121C261F003EAD18 /* qwt_compass.cpp */,
65B363D0121C261F003EAD18 /* qwt_compass.h */,
65B363D1121C261F003EAD18 /* qwt_compass_rose.cpp */,
65B363D2121C261F003EAD18 /* qwt_compass_rose.h */,
65B363D3121C261F003EAD18 /* qwt_counter.cpp */,
65B363D4121C261F003EAD18 /* qwt_counter.h */,
65B363D5121C261F003EAD18 /* qwt_curve_fitter.cpp */,
65B363D6121C261F003EAD18 /* qwt_curve_fitter.h */,
65B363D7121C261F003EAD18 /* qwt_data.cpp */,
65B363D8121C261F003EAD18 /* qwt_data.h */,
65B363D9121C261F003EAD18 /* qwt_dial.cpp */,
65B363DA121C261F003EAD18 /* qwt_dial.h */,
65B363DB121C261F003EAD18 /* qwt_dial_needle.cpp */,
65B363DC121C261F003EAD18 /* qwt_dial_needle.h */,
65B363DD121C261F003EAD18 /* qwt_double_interval.cpp */,
65B363DE121C261F003EAD18 /* qwt_double_interval.h */,
65B363DF121C261F003EAD18 /* qwt_double_range.cpp */,
65B363E0121C261F003EAD18 /* qwt_double_range.h */,
65B363E1121C261F003EAD18 /* qwt_double_rect.cpp */,
65B363E2121C261F003EAD18 /* qwt_double_rect.h */,
65B363E3121C261F003EAD18 /* qwt_dyngrid_layout.cpp */,
65B363E4121C261F003EAD18 /* qwt_dyngrid_layout.h */,
65B363E5121C261F003EAD18 /* qwt_event_pattern.cpp */,
65B363E6121C261F003EAD18 /* qwt_event_pattern.h */,
65B363E7121C261F003EAD18 /* qwt_global.h */,
65B363E8121C261F003EAD18 /* qwt_interval_data.cpp */,
65B363E9121C261F003EAD18 /* qwt_interval_data.h */,
65B363EA121C261F003EAD18 /* qwt_knob.cpp */,
65B363EB121C261F003EAD18 /* qwt_knob.h */,
65B363EC121C261F003EAD18 /* qwt_layout_metrics.cpp */,
65B363ED121C261F003EAD18 /* qwt_layout_metrics.h */,
65B363EE121C261F003EAD18 /* qwt_legend.cpp */,
65B363EF121C261F003EAD18 /* qwt_legend.h */,
65B363F0121C261F003EAD18 /* qwt_legend_item.cpp */,
65B363F1121C261F003EAD18 /* qwt_legend_item.h */,
65B363F2121C261F003EAD18 /* qwt_legend_itemmanager.h */,
65B363F3121C261F003EAD18 /* qwt_magnifier.cpp */,
65B363F4121C261F003EAD18 /* qwt_magnifier.h */,
65B363F5121C261F003EAD18 /* qwt_math.cpp */,
65B363F6121C261F003EAD18 /* qwt_math.h */,
65B363F7121C261F003EAD18 /* qwt_paint_buffer.cpp */,
65B363F8121C261F003EAD18 /* qwt_paint_buffer.h */,
65B363F9121C261F003EAD18 /* qwt_painter.cpp */,
65B363FA121C261F003EAD18 /* qwt_painter.h */,
65B363FB121C261F003EAD18 /* qwt_panner.cpp */,
65B363FC121C261F003EAD18 /* qwt_panner.h */,
65B363FD121C261F003EAD18 /* qwt_picker.cpp */,
65B363FE121C261F003EAD18 /* qwt_picker.h */,
65B363FF121C261F003EAD18 /* qwt_picker_machine.cpp */,
65B36400121C261F003EAD18 /* qwt_picker_machine.h */,
65B36401121C261F003EAD18 /* qwt_plot.cpp */,
65B36402121C261F003EAD18 /* qwt_plot.h */,
65B36403121C261F003EAD18 /* qwt_plot_axis.cpp */,
65B36404121C261F003EAD18 /* qwt_plot_canvas.cpp */,
65B36405121C261F003EAD18 /* qwt_plot_canvas.h */,
65B36406121C261F003EAD18 /* qwt_plot_curve.cpp */,
65B36407121C261F003EAD18 /* qwt_plot_curve.h */,
65B36408121C261F003EAD18 /* qwt_plot_dict.cpp */,
65B36409121C261F003EAD18 /* qwt_plot_dict.h */,
65B3640A121C261F003EAD18 /* qwt_plot_grid.cpp */,
65B3640B121C261F003EAD18 /* qwt_plot_grid.h */,
65B3640C121C261F003EAD18 /* qwt_plot_item.cpp */,
65B3640D121C261F003EAD18 /* qwt_plot_item.h */,
65B3640E121C261F003EAD18 /* qwt_plot_layout.cpp */,
65B3640F121C261F003EAD18 /* qwt_plot_layout.h */,
65B36410121C261F003EAD18 /* qwt_plot_magnifier.cpp */,
65B36411121C261F003EAD18 /* qwt_plot_magnifier.h */,
65B36412121C261F003EAD18 /* qwt_plot_marker.cpp */,
65B36413121C261F003EAD18 /* qwt_plot_marker.h */,
65B36414121C261F003EAD18 /* qwt_plot_panner.cpp */,
65B36415121C261F003EAD18 /* qwt_plot_panner.h */,
65B36416121C261F003EAD18 /* qwt_plot_picker.cpp */,
65B36417121C261F003EAD18 /* qwt_plot_picker.h */,
65B36418121C261F003EAD18 /* qwt_plot_print.cpp */,
65B36419121C261F003EAD18 /* qwt_plot_printfilter.cpp */,
65B3641A121C261F003EAD18 /* qwt_plot_printfilter.h */,
65B3641B121C261F003EAD18 /* qwt_plot_rasteritem.cpp */,
65B3641C121C261F003EAD18 /* qwt_plot_rasteritem.h */,
65B3641D121C261F003EAD18 /* qwt_plot_rescaler.cpp */,
65B3641E121C261F003EAD18 /* qwt_plot_rescaler.h */,
65B3641F121C261F003EAD18 /* qwt_plot_scaleitem.cpp */,
65B36420121C261F003EAD18 /* qwt_plot_scaleitem.h */,
65B36421121C261F003EAD18 /* qwt_plot_spectrogram.cpp */,
65B36422121C261F003EAD18 /* qwt_plot_spectrogram.h */,
65B36423121C261F003EAD18 /* qwt_plot_svgitem.cpp */,
65B36424121C261F003EAD18 /* qwt_plot_svgitem.h */,
65B36425121C261F003EAD18 /* qwt_plot_xml.cpp */,
65B36426121C261F003EAD18 /* qwt_plot_zoomer.cpp */,
65B36427121C261F003EAD18 /* qwt_plot_zoomer.h */,
65B36428121C261F003EAD18 /* qwt_polygon.h */,
65B36429121C261F003EAD18 /* qwt_raster_data.cpp */,
65B3642A121C261F003EAD18 /* qwt_raster_data.h */,
65B3642B121C261F003EAD18 /* qwt_round_scale_draw.cpp */,
65B3642C121C261F003EAD18 /* qwt_round_scale_draw.h */,
65B3642D121C261F003EAD18 /* qwt_scale_div.cpp */,
65B3642E121C261F003EAD18 /* qwt_scale_div.h */,
65B3642F121C261F003EAD18 /* qwt_scale_draw.cpp */,
65B36430121C261F003EAD18 /* qwt_scale_draw.h */,
65B36431121C261F003EAD18 /* qwt_scale_engine.cpp */,
65B36432121C261F003EAD18 /* qwt_scale_engine.h */,
65B36433121C261F003EAD18 /* qwt_scale_map.cpp */,
65B36434121C261F003EAD18 /* qwt_scale_map.h */,
65B36435121C261F003EAD18 /* qwt_scale_widget.cpp */,
65B36436121C261F003EAD18 /* qwt_scale_widget.h */,
65B36437121C261F003EAD18 /* qwt_slider.cpp */,
65B36438121C261F003EAD18 /* qwt_slider.h */,
65B36439121C261F003EAD18 /* qwt_spline.cpp */,
65B3643A121C261F003EAD18 /* qwt_spline.h */,
65B3643B121C261F003EAD18 /* qwt_symbol.cpp */,
65B3643C121C261F003EAD18 /* qwt_symbol.h */,
65B3643D121C261F003EAD18 /* qwt_text.cpp */,
65B3643E121C261F003EAD18 /* qwt_text.h */,
65B3643F121C261F003EAD18 /* qwt_text_engine.cpp */,
65B36440121C261F003EAD18 /* qwt_text_engine.h */,
65B36441121C261F003EAD18 /* qwt_text_label.cpp */,
65B36442121C261F003EAD18 /* qwt_text_label.h */,
65B36443121C261F003EAD18 /* qwt_thermo.cpp */,
65B36444121C261F003EAD18 /* qwt_thermo.h */,
65B36445121C261F003EAD18 /* qwt_valuelist.h */,
65B36446121C261F003EAD18 /* qwt_wheel.cpp */,
65B36447121C261F003EAD18 /* qwt_wheel.h */,
65B36448121C261F003EAD18 /* src.pro */,
);
path = src;
sourceTree = "<group>";
};
65B36449121C261F003EAD18 /* qymodem */ = {
isa = PBXGroup;
children = (
65B3644A121C261F003EAD18 /* qymodem.pri */,
65B3644B121C261F003EAD18 /* qymodem.pro */,
65B3644C121C261F003EAD18 /* src */,
);
path = qymodem;
sourceTree = "<group>";
};
65B3644C121C261F003EAD18 /* src */ = {
isa = PBXGroup;
children = (
65B3644D121C261F003EAD18 /* qymodem.cpp */,
65B3644E121C261F003EAD18 /* qymodem.h */,
65B3644F121C261F003EAD18 /* qymodem_tx.cpp */,
65B36450121C261F003EAD18 /* qymodem_tx.h */,
65B36451121C261F003EAD18 /* qymodemfilestream.cpp */,
65B36452121C261F003EAD18 /* qymodemsend.cpp */,
65B36453121C261F003EAD18 /* qymodemsend.h */,
65B36454121C261F003EAD18 /* src.pro */,
);
path = src;
sourceTree = "<group>";
};
65B36455121C261F003EAD18 /* uavobjgenerator */ = {
isa = PBXGroup;
children = (
65B36456121C261F003EAD18 /* main.cpp */,
65B36457121C261F003EAD18 /* uavobjectgenerator.cpp */,
65B36458121C261F003EAD18 /* uavobjectgenerator.h */,
65B36459121C261F003EAD18 /* uavobjectparser.cpp */,
65B3645A121C261F003EAD18 /* uavobjectparser.h */,
65B3645B121C261F003EAD18 /* uavobjgenerator.pro */,
);
path = uavobjgenerator;
sourceTree = "<group>";
};
65B3645C121C261F003EAD18 /* utils */ = {
isa = PBXGroup;
children = (
65B3645D121C261F003EAD18 /* abstractprocess.h */,
65B3645E121C261F003EAD18 /* abstractprocess_win.cpp */,
65B3645F121C261F003EAD18 /* basevalidatinglineedit.cpp */,
65B36460121C261F003EAD18 /* basevalidatinglineedit.h */,
65B36461121C261F003EAD18 /* checkablemessagebox.cpp */,
65B36462121C261F003EAD18 /* checkablemessagebox.h */,
65B36463121C261F003EAD18 /* checkablemessagebox.ui */,
65B36464121C261F003EAD18 /* classnamevalidatinglineedit.cpp */,
65B36465121C261F003EAD18 /* classnamevalidatinglineedit.h */,
65B36466121C261F003EAD18 /* codegeneration.cpp */,
65B36467121C261F003EAD18 /* codegeneration.h */,
65B36468121C261F003EAD18 /* consoleprocess.cpp */,
65B36469121C261F003EAD18 /* consoleprocess.h */,
65B3646A121C261F003EAD18 /* consoleprocess_unix.cpp */,
65B3646B121C261F003EAD18 /* consoleprocess_win.cpp */,
65B3646C121C261F003EAD18 /* detailsbutton.cpp */,
65B3646D121C261F003EAD18 /* detailsbutton.h */,
65B3646E121C261F003EAD18 /* detailswidget.cpp */,
65B3646F121C261F003EAD18 /* detailswidget.h */,
65B36470121C261F003EAD18 /* fancylineedit.cpp */,
65B36471121C261F003EAD18 /* fancylineedit.h */,
65B36472121C261F003EAD18 /* fancymainwindow.cpp */,
65B36473121C261F003EAD18 /* fancymainwindow.h */,
65B36474121C261F003EAD18 /* filenamevalidatinglineedit.cpp */,
65B36475121C261F003EAD18 /* filenamevalidatinglineedit.h */,
65B36476121C261F003EAD18 /* filesearch.cpp */,
65B36477121C261F003EAD18 /* filesearch.h */,
65B36478121C261F003EAD18 /* filewizarddialog.cpp */,
65B36479121C261F003EAD18 /* filewizarddialog.h */,
65B3647A121C261F003EAD18 /* filewizardpage.cpp */,
65B3647B121C261F003EAD18 /* filewizardpage.h */,
65B3647C121C261F003EAD18 /* filewizardpage.ui */,
65B3647D121C261F003EAD18 /* images */,
65B3647F121C261F003EAD18 /* iwelcomepage.cpp */,
65B36480121C261F003EAD18 /* iwelcomepage.h */,
65B36481121C261F003EAD18 /* linecolumnlabel.cpp */,
65B36482121C261F003EAD18 /* linecolumnlabel.h */,
65B36483121C261F003EAD18 /* listutils.h */,
65B36484121C261F003EAD18 /* newclasswidget.cpp */,
65B36485121C261F003EAD18 /* newclasswidget.h */,
65B36486121C261F003EAD18 /* newclasswidget.ui */,
65B36487121C261F003EAD18 /* parameteraction.cpp */,
65B36488121C261F003EAD18 /* parameteraction.h */,
65B36489121C261F003EAD18 /* pathchooser.cpp */,
65B3648A121C261F003EAD18 /* pathchooser.h */,
65B3648B121C261F003EAD18 /* pathlisteditor.cpp */,
65B3648C121C261F003EAD18 /* pathlisteditor.h */,
65B3648D121C261F003EAD18 /* projectintropage.cpp */,
65B3648E121C261F003EAD18 /* projectintropage.h */,
65B3648F121C261F003EAD18 /* projectintropage.ui */,
65B36490121C261F003EAD18 /* projectnamevalidatinglineedit.cpp */,
65B36491121C261F003EAD18 /* projectnamevalidatinglineedit.h */,
65B36492121C261F003EAD18 /* qtcassert.h */,
65B36493121C261F003EAD18 /* qtcolorbutton.cpp */,
65B36494121C261F003EAD18 /* qtcolorbutton.h */,
65B36495121C261F003EAD18 /* reloadpromptutils.cpp */,
65B36496121C261F003EAD18 /* reloadpromptutils.h */,
65B36497121C261F003EAD18 /* savedaction.cpp */,
65B36498121C261F003EAD18 /* savedaction.h */,
65B36499121C261F003EAD18 /* settingsutils.cpp */,
65B3649A121C261F003EAD18 /* settingsutils.h */,
65B3649B121C261F003EAD18 /* styledbar.cpp */,
65B3649C121C261F003EAD18 /* styledbar.h */,
65B3649D121C261F003EAD18 /* stylehelper.cpp */,
65B3649E121C261F003EAD18 /* stylehelper.h */,
65B3649F121C261F003EAD18 /* submiteditorwidget.cpp */,
65B364A0121C261F003EAD18 /* submiteditorwidget.h */,
65B364A1121C261F003EAD18 /* submiteditorwidget.ui */,
65B364A2121C261F003EAD18 /* submitfieldwidget.cpp */,
65B364A3121C261F003EAD18 /* submitfieldwidget.h */,
65B364A4121C261F003EAD18 /* synchronousprocess.cpp */,
65B364A5121C261F003EAD18 /* synchronousprocess.h */,
65B364A6121C261F003EAD18 /* treewidgetcolumnstretcher.cpp */,
65B364A7121C261F003EAD18 /* treewidgetcolumnstretcher.h */,
65B364A8121C261F003EAD18 /* uncommentselection.cpp */,
65B364A9121C261F003EAD18 /* uncommentselection.h */,
65B364AA121C261F003EAD18 /* utils.pri */,
65B364AB121C261F003EAD18 /* utils.pro */,
65B364AC121C261F003EAD18 /* utils.qrc */,
65B364AD121C261F003EAD18 /* utils_global.h */,
65B364AE121C261F003EAD18 /* welcomemodetreewidget.cpp */,
65B364AF121C261F003EAD18 /* welcomemodetreewidget.h */,
65B364B0121C261F003EAD18 /* winutils.cpp */,
65B364B1121C261F003EAD18 /* winutils.h */,
);
path = utils;
sourceTree = "<group>";
};
65B3647D121C261F003EAD18 /* images */ = {
isa = PBXGroup;
children = (
65B3647E121C261F003EAD18 /* removesubmitfield.png */,
);
path = images;
sourceTree = "<group>";
};
65B364B4121C261F003EAD18 /* plugins */ = {
isa = PBXGroup;
children = (
65B364B5121C261F003EAD18 /* config */,
65B364CF121C261F003EAD18 /* consolegadget */,
65B364DC121C261F003EAD18 /* coreplugin */,
65B36591121C261F003EAD18 /* dial */,
65B365A5121C261F003EAD18 /* donothing */,
65B365AA121C261F003EAD18 /* emptygadget */,
65B365B5121C261F003EAD18 /* gcscontrol */,
65B365C7121C261F003EAD18 /* gpsdisplay */,
65B365E3121C261F003EAD18 /* hitl */,
65B365F9121C2620003EAD18 /* hitlil2 */,
65B3660D121C2620003EAD18 /* importexport */,
65B36620121C2620003EAD18 /* ipconnection */,
65B3662D121C2620003EAD18 /* lineardial */,
65B36641121C2620003EAD18 /* modelview */,
65B36652121C2620003EAD18 /* notify */,
65B3666C121C2620003EAD18 /* opmap */,
65B366AA121C2620003EAD18 /* pfd */,
65B366BE121C2620003EAD18 /* plugins.pro */,
65B366BF121C2620003EAD18 /* rawhid */,
65B366CE121C2620003EAD18 /* scope */,
65B366E0121C2620003EAD18 /* serialconnection */,
65B366E8121C2620003EAD18 /* systemhealth */,
65B366F9121C2620003EAD18 /* uavobjectbrowser */,
65B36713121C2620003EAD18 /* uavobjects */,
65B36782121C2620003EAD18 /* uavtalk */,
65B36792121C2620003EAD18 /* uploader */,
65B367A1121C2620003EAD18 /* welcome */,
);
path = plugins;
sourceTree = "<group>";
};
65B364B5121C261F003EAD18 /* config */ = {
isa = PBXGroup;
children = (
65B364B6121C261F003EAD18 /* airframe.ui */,
65B364B7121C261F003EAD18 /* Config.pluginspec */,
65B364B8121C261F003EAD18 /* config.pro */,
65B364B9121C261F003EAD18 /* configfactory.h */,
65B364BA121C261F003EAD18 /* configgadget.cpp */,
65B364BB121C261F003EAD18 /* configgadget.h */,
65B364BC121C261F003EAD18 /* configgadget.qrc */,
65B364BD121C261F003EAD18 /* configgadgetconfiguration.cpp */,
65B364BE121C261F003EAD18 /* configgadgetconfiguration.h */,
65B364BF121C261F003EAD18 /* configgadgetfactory.cpp */,
65B364C0121C261F003EAD18 /* configgadgetfactory.h */,
65B364C1121C261F003EAD18 /* configgadgetoptionspage.cpp */,
65B364C2121C261F003EAD18 /* configgadgetoptionspage.h */,
65B364C3121C261F003EAD18 /* configgadgetwidget.cpp */,
65B364C4121C261F003EAD18 /* configgadgetwidget.h */,
65B364C5121C261F003EAD18 /* configplugin.cpp */,
65B364C6121C261F003EAD18 /* configplugin.h */,
65B364C7121C261F003EAD18 /* fancytabwidget.cpp */,
65B364C8121C261F003EAD18 /* fancytabwidget.h */,
65B364C9121C261F003EAD18 /* images */,
65B364CD121C261F003EAD18 /* settingswidget.ui */,
65B364CE121C261F003EAD18 /* telemetry.ui */,
);
path = config;
sourceTree = "<group>";
};
65B364C9121C261F003EAD18 /* images */ = {
isa = PBXGroup;
children = (
65B364CA121C261F003EAD18 /* Airframe.png */,
65B364CB121C261F003EAD18 /* Servo.png */,
65B364CC121C261F003EAD18 /* XBee.svg */,
);
path = images;
sourceTree = "<group>";
};
65B364CF121C261F003EAD18 /* consolegadget */ = {
isa = PBXGroup;
children = (
65B364D0121C261F003EAD18 /* consolegadget.cpp */,
65B364D1121C261F003EAD18 /* consolegadget.h */,
65B364D2121C261F003EAD18 /* ConsoleGadget.pluginspec */,
65B364D3121C261F003EAD18 /* consolegadget.pro */,
65B364D4121C261F003EAD18 /* consolegadgetfactory.cpp */,
65B364D5121C261F003EAD18 /* consolegadgetfactory.h */,
65B364D6121C261F003EAD18 /* consolegadgetwidget.cpp */,
65B364D7121C261F003EAD18 /* consolegadgetwidget.h */,
65B364D8121C261F003EAD18 /* consoleplugin.cpp */,
65B364D9121C261F003EAD18 /* consoleplugin.h */,
65B364DA121C261F003EAD18 /* texteditloggerengine.cpp */,
65B364DB121C261F003EAD18 /* texteditloggerengine.h */,
);
path = consolegadget;
sourceTree = "<group>";
};
65B364DC121C261F003EAD18 /* coreplugin */ = {
isa = PBXGroup;
children = (
65B364DD121C261F003EAD18 /* actionmanager */,
65B364E9121C261F003EAD18 /* basemode.cpp */,
65B364EA121C261F003EAD18 /* basemode.h */,
65B364EB121C261F003EAD18 /* baseview.cpp */,
65B364EC121C261F003EAD18 /* baseview.h */,
65B364ED121C261F003EAD18 /* connectionmanager.cpp */,
65B364EE121C261F003EAD18 /* connectionmanager.h */,
65B364EF121C261F003EAD18 /* Core.pluginspec */,
65B364F0121C261F003EAD18 /* core.qrc */,
65B364F1121C261F003EAD18 /* core_global.h */,
65B364F2121C261F003EAD18 /* coreconstants.h */,
65B364F3121C261F003EAD18 /* coreimpl.cpp */,
65B364F4121C261F003EAD18 /* coreimpl.h */,
65B364F5121C261F003EAD18 /* coreplugin.cpp */,
65B364F6121C261F003EAD18 /* coreplugin.h */,
65B364F7121C261F003EAD18 /* coreplugin.pri */,
65B364F8121C261F003EAD18 /* coreplugin.pro */,
65B364F9121C261F003EAD18 /* coreplugin_dependencies.pri */,
65B364FA121C261F003EAD18 /* dialogs */,
65B36505121C261F003EAD18 /* eventfilteringmainwindow.cpp */,
65B36506121C261F003EAD18 /* eventfilteringmainwindow.h */,
65B36507121C261F003EAD18 /* fancyactionbar.cpp */,
65B36508121C261F003EAD18 /* fancyactionbar.h */,
65B36509121C261F003EAD18 /* fancyactionbar.qrc */,
65B3650A121C261F003EAD18 /* fancytabwidget.cpp */,
65B3650B121C261F003EAD18 /* fancytabwidget.h */,
65B3650C121C261F003EAD18 /* fileiconprovider.cpp */,
65B3650D121C261F003EAD18 /* fileiconprovider.h */,
65B3650E121C261F003EAD18 /* generalsettings.cpp */,
65B3650F121C261F003EAD18 /* generalsettings.h */,
65B36510121C261F003EAD18 /* generalsettings.ui */,
65B36511121C261F003EAD18 /* iconnection.cpp */,
65B36512121C261F003EAD18 /* iconnection.h */,
65B36513121C261F003EAD18 /* icontext.h */,
65B36514121C261F003EAD18 /* icore.cpp */,
65B36515121C261F003EAD18 /* icore.h */,
65B36516121C261F003EAD18 /* icorelistener.h */,
65B36517121C261F003EAD18 /* images */,
65B36552121C261F003EAD18 /* imode.h */,
65B36553121C261F003EAD18 /* ioutputpane.h */,
65B36554121C261F003EAD18 /* iuavgadget.cpp */,
65B36555121C261F003EAD18 /* iuavgadget.h */,
65B36556121C261F003EAD18 /* iuavgadgetconfiguration.cpp */,
65B36557121C261F003EAD18 /* iuavgadgetconfiguration.h */,
65B36558121C261F003EAD18 /* iuavgadgetfactory.h */,
65B36559121C261F003EAD18 /* iversioncontrol.h */,
65B3655A121C261F003EAD18 /* iview.h */,
65B3655B121C261F003EAD18 /* mainwindow.cpp */,
65B3655C121C261F003EAD18 /* mainwindow.h */,
65B3655D121C261F003EAD18 /* manhattanstyle.cpp */,
65B3655E121C261F003EAD18 /* manhattanstyle.h */,
65B3655F121C261F003EAD18 /* messagemanager.cpp */,
65B36560121C261F003EAD18 /* messagemanager.h */,
65B36561121C261F003EAD18 /* messageoutputwindow.cpp */,
65B36562121C261F003EAD18 /* messageoutputwindow.h */,
65B36563121C261F003EAD18 /* mimedatabase.cpp */,
65B36564121C261F003EAD18 /* mimedatabase.h */,
65B36565121C261F003EAD18 /* minisplitter.cpp */,
65B36566121C261F003EAD18 /* minisplitter.h */,
65B36567121C261F003EAD18 /* modemanager.cpp */,
65B36568121C261F003EAD18 /* modemanager.h */,
65B36569121C261F003EAD18 /* outputpane.h */,
65B3656A121C261F003EAD18 /* plugindialog.cpp */,
65B3656B121C261F003EAD18 /* plugindialog.h */,
65B3656C121C261F003EAD18 /* rightpane.cpp */,
65B3656D121C261F003EAD18 /* rightpane.h */,
65B3656E121C261F003EAD18 /* settingsdatabase.cpp */,
65B3656F121C261F003EAD18 /* settingsdatabase.h */,
65B36570121C261F003EAD18 /* sidebar.cpp */,
65B36571121C261F003EAD18 /* sidebar.h */,
65B36572121C261F003EAD18 /* styleanimator.cpp */,
65B36573121C261F003EAD18 /* styleanimator.h */,
65B36574121C261F003EAD18 /* tabpositionindicator.cpp */,
65B36575121C261F003EAD18 /* tabpositionindicator.h */,
65B36576121C261F003EAD18 /* threadmanager.cpp */,
65B36577121C261F003EAD18 /* threadmanager.h */,
65B36578121C261F003EAD18 /* uavgadgetdecorator.cpp */,
65B36579121C261F003EAD18 /* uavgadgetdecorator.h */,
65B3657A121C261F003EAD18 /* uavgadgetinstancemanager.cpp */,
65B3657B121C261F003EAD18 /* uavgadgetinstancemanager.h */,
65B3657C121C261F003EAD18 /* uavgadgetmanager */,
65B36581121C261F003EAD18 /* uavgadgetmode.cpp */,
65B36582121C261F003EAD18 /* uavgadgetmode.h */,
65B36583121C261F003EAD18 /* uavgadgetoptionspage.ui */,
65B36584121C261F003EAD18 /* uavgadgetoptionspagedecorator.cpp */,
65B36585121C261F003EAD18 /* uavgadgetoptionspagedecorator.h */,
65B36586121C261F003EAD18 /* uniqueidmanager.cpp */,
65B36587121C261F003EAD18 /* uniqueidmanager.h */,
65B36588121C261F003EAD18 /* variablemanager.cpp */,
65B36589121C261F003EAD18 /* variablemanager.h */,
65B3658A121C261F003EAD18 /* versiondialog.cpp */,
65B3658B121C261F003EAD18 /* versiondialog.h */,
65B3658C121C261F003EAD18 /* viewmanager.cpp */,
65B3658D121C261F003EAD18 /* viewmanager.h */,
65B3658E121C261F003EAD18 /* workspacesettings.cpp */,
65B3658F121C261F003EAD18 /* workspacesettings.h */,
65B36590121C261F003EAD18 /* workspacesettings.ui */,
);
path = coreplugin;
sourceTree = "<group>";
};
65B364DD121C261F003EAD18 /* actionmanager */ = {
isa = PBXGroup;
children = (
65B364DE121C261F003EAD18 /* actioncontainer.cpp */,
65B364DF121C261F003EAD18 /* actioncontainer.h */,
65B364E0121C261F003EAD18 /* actioncontainer_p.h */,
65B364E1121C261F003EAD18 /* actionmanager.cpp */,
65B364E2121C261F003EAD18 /* actionmanager.h */,
65B364E3121C261F003EAD18 /* actionmanager_p.h */,
65B364E4121C261F003EAD18 /* command.cpp */,
65B364E5121C261F003EAD18 /* command.h */,
65B364E6121C261F003EAD18 /* command_p.h */,
65B364E7121C261F003EAD18 /* commandsfile.cpp */,
65B364E8121C261F003EAD18 /* commandsfile.h */,
);
path = actionmanager;
sourceTree = "<group>";
};
65B364FA121C261F003EAD18 /* dialogs */ = {
isa = PBXGroup;
children = (
65B364FB121C261F003EAD18 /* ioptionspage.cpp */,
65B364FC121C261F003EAD18 /* ioptionspage.h */,
65B364FD121C261F003EAD18 /* iwizard.cpp */,
65B364FE121C261F003EAD18 /* iwizard.h */,
65B364FF121C261F003EAD18 /* settingsdialog.cpp */,
65B36500121C261F003EAD18 /* settingsdialog.h */,
65B36501121C261F003EAD18 /* settingsdialog.ui */,
65B36502121C261F003EAD18 /* shortcutsettings.cpp */,
65B36503121C261F003EAD18 /* shortcutsettings.h */,
65B36504121C261F003EAD18 /* shortcutsettings.ui */,
);
path = dialogs;
sourceTree = "<group>";
};
65B36517121C261F003EAD18 /* images */ = {
isa = PBXGroup;
children = (
65B36518121C261F003EAD18 /* clean_pane_small.png */,
65B36519121C261F003EAD18 /* clear.png */,
65B3651A121C261F003EAD18 /* closebutton.png */,
65B3651B121C261F003EAD18 /* darkclosebutton.png */,
65B3651C121C261F003EAD18 /* dir.png */,
65B3651D121C261F003EAD18 /* editcopy.png */,
65B3651E121C261F003EAD18 /* editcut.png */,
65B3651F121C261F003EAD18 /* editpaste.png */,
65B36520121C261F003EAD18 /* empty14.png */,
65B36521121C261F003EAD18 /* exiticon.png */,
65B36522121C261F003EAD18 /* extension.png */,
65B36523121C261F003EAD18 /* fancytoolbutton.svg */,
65B36524121C261F003EAD18 /* filenew.png */,
65B36525121C261F003EAD18 /* fileopen.png */,
65B36526121C261F003EAD18 /* filesave.png */,
65B36527121C261F003EAD18 /* find.png */,
65B36528121C261F003EAD18 /* findnext.png */,
65B36529121C261F003EAD18 /* helpicon.png */,
65B3652A121C261F003EAD18 /* inputfield.png */,
65B3652B121C261F003EAD18 /* inputfield_disabled.png */,
65B3652C121C261F003EAD18 /* linkicon.png */,
65B3652D121C261F003EAD18 /* locked.png */,
65B3652E121C261F003EAD18 /* magnifier.png */,
65B3652F121C261F003EAD18 /* minus.png */,
65B36530121C261F003EAD18 /* mode_Debug.png */,
65B36531121C261F003EAD18 /* mode_Edit.png */,
65B36532121C261F003EAD18 /* mode_Output.png */,
65B36533121C261F003EAD18 /* mode_Project.png */,
65B36534121C261F003EAD18 /* mode_Reference.png */,
65B36535121C261F003EAD18 /* next.png */,
65B36536121C261F003EAD18 /* openpilot_logo_128.png */,
65B36537121C261F003EAD18 /* openpilot_logo_256.png */,
65B36538121C261F003EAD18 /* openpilot_logo_32.png */,
65B36539121C261F003EAD18 /* openpilot_logo_64.png */,
65B3653A121C261F003EAD18 /* openpiloticon.png */,
65B3653B121C261F003EAD18 /* optionsicon.png */,
65B3653C121C261F003EAD18 /* panel_button.png */,
65B3653D121C261F003EAD18 /* panel_button_checked.png */,
65B3653E121C261F003EAD18 /* panel_button_checked_hover.png */,
65B3653F121C261F003EAD18 /* panel_button_hover.png */,
65B36540121C261F003EAD18 /* panel_button_pressed.png */,
65B36541121C261F003EAD18 /* pluginicon.png */,
65B36542121C261F003EAD18 /* plus.png */,
65B36543121C261F003EAD18 /* prev.png */,
65B36544121C261F003EAD18 /* pushbutton.png */,
65B36545121C261F003EAD18 /* pushbutton_hover.png */,
65B36546121C261F003EAD18 /* pushbutton_pressed.png */,
65B36547121C261F003EAD18 /* qtcreator_logo_32.png */,
65B36548121C261F003EAD18 /* qtwatermark.png */,
65B36549121C261F003EAD18 /* redo.png */,
65B3654A121C261F003EAD18 /* replace.png */,
65B3654B121C261F003EAD18 /* reset.png */,
65B3654C121C261F003EAD18 /* sidebaricon.png */,
65B3654D121C261F003EAD18 /* splitbutton_horizontal.png */,
65B3654E121C261F003EAD18 /* statusbar.png */,
65B3654F121C261F003EAD18 /* undo.png */,
65B36550121C261F003EAD18 /* unknownfile.png */,
65B36551121C261F003EAD18 /* unlocked.png */,
);
path = images;
sourceTree = "<group>";
};
65B3657C121C261F003EAD18 /* uavgadgetmanager */ = {
isa = PBXGroup;
children = (
65B3657D121C261F003EAD18 /* uavgadgetmanager.cpp */,
65B3657E121C261F003EAD18 /* uavgadgetmanager.h */,
65B3657F121C261F003EAD18 /* uavgadgetview.cpp */,
65B36580121C261F003EAD18 /* uavgadgetview.h */,
);
path = uavgadgetmanager;
sourceTree = "<group>";
};
65B36591121C261F003EAD18 /* dial */ = {
isa = PBXGroup;
children = (
65B36592121C261F003EAD18 /* dial.pro */,
65B36593121C261F003EAD18 /* dial.qrc */,
65B36594121C261F003EAD18 /* dial_dependencies.pri */,
65B36595121C261F003EAD18 /* dialgadget.cpp */,
65B36596121C261F003EAD18 /* dialgadget.h */,
65B36597121C261F003EAD18 /* DialGadget.pluginspec */,
65B36598121C261F003EAD18 /* dialgadgetconfiguration.cpp */,
65B36599121C261F003EAD18 /* dialgadgetconfiguration.h */,
65B3659A121C261F003EAD18 /* dialgadgetfactory.cpp */,
65B3659B121C261F003EAD18 /* dialgadgetfactory.h */,
65B3659C121C261F003EAD18 /* dialgadgetoptionspage.cpp */,
65B3659D121C261F003EAD18 /* dialgadgetoptionspage.h */,
65B3659E121C261F003EAD18 /* dialgadgetoptionspage.ui */,
65B3659F121C261F003EAD18 /* dialgadgetwidget.cpp */,
65B365A0121C261F003EAD18 /* dialgadgetwidget.h */,
65B365A1121C261F003EAD18 /* dialplugin.cpp */,
65B365A2121C261F003EAD18 /* dialplugin.h */,
65B365A3121C261F003EAD18 /* images */,
);
path = dial;
sourceTree = "<group>";
};
65B365A3121C261F003EAD18 /* images */ = {
isa = PBXGroup;
children = (
65B365A4121C261F003EAD18 /* empty.svg */,
);
path = images;
sourceTree = "<group>";
};
65B365A5121C261F003EAD18 /* donothing */ = {
isa = PBXGroup;
children = (
65B365A6121C261F003EAD18 /* DoNothing.pluginspec */,
65B365A7121C261F003EAD18 /* donothing.pro */,
65B365A8121C261F003EAD18 /* donothingplugin.cpp */,
65B365A9121C261F003EAD18 /* donothingplugin.h */,
);
path = donothing;
sourceTree = "<group>";
};
65B365AA121C261F003EAD18 /* emptygadget */ = {
isa = PBXGroup;
children = (
65B365AB121C261F003EAD18 /* emptygadget.cpp */,
65B365AC121C261F003EAD18 /* emptygadget.h */,
65B365AD121C261F003EAD18 /* EmptyGadget.pluginspec */,
65B365AE121C261F003EAD18 /* emptygadget.pro */,
65B365AF121C261F003EAD18 /* emptygadgetfactory.cpp */,
65B365B0121C261F003EAD18 /* emptygadgetfactory.h */,
65B365B1121C261F003EAD18 /* emptygadgetwidget.cpp */,
65B365B2121C261F003EAD18 /* emptygadgetwidget.h */,
65B365B3121C261F003EAD18 /* emptyplugin.cpp */,
65B365B4121C261F003EAD18 /* emptyplugin.h */,
);
path = emptygadget;
sourceTree = "<group>";
};
65B365B5121C261F003EAD18 /* gcscontrol */ = {
isa = PBXGroup;
children = (
65B365B6121C261F003EAD18 /* GCSControl.pluginspec */,
65B365B7121C261F003EAD18 /* gcscontrol.pro */,
65B365B8121C261F003EAD18 /* gcscontrol.qrc */,
65B365B9121C261F003EAD18 /* gcscontrol.ui */,
65B365BA121C261F003EAD18 /* gcscontrolgadget.cpp */,
65B365BB121C261F003EAD18 /* gcscontrolgadget.h */,
65B365BC121C261F003EAD18 /* gcscontrolgadgetfactory.cpp */,
65B365BD121C261F003EAD18 /* gcscontrolgadgetfactory.h */,
65B365BE121C261F003EAD18 /* gcscontrolgadgetwidget.cpp */,
65B365BF121C261F003EAD18 /* gcscontrolgadgetwidget.h */,
65B365C0121C261F003EAD18 /* gcscontrolplugin.cpp */,
65B365C1121C261F003EAD18 /* gcscontrolplugin.h */,
65B365C2121C261F003EAD18 /* gcsonctrolgadgetwidget.h */,
65B365C3121C261F003EAD18 /* images */,
65B365C5121C261F003EAD18 /* joystickcontrol.cpp */,
65B365C6121C261F003EAD18 /* joystickcontrol.h */,
);
path = gcscontrol;
sourceTree = "<group>";
};
65B365C3121C261F003EAD18 /* images */ = {
isa = PBXGroup;
children = (
65B365C4121C261F003EAD18 /* joystick.svg */,
);
path = images;
sourceTree = "<group>";
};
65B365C7121C261F003EAD18 /* gpsdisplay */ = {
isa = PBXGroup;
children = (
65B365C8121C261F003EAD18 /* buffer.cpp */,
65B365C9121C261F003EAD18 /* buffer.h */,
65B365CA121C261F003EAD18 /* gpsdisplay.pro */,
65B365CB121C261F003EAD18 /* gpsdisplay_dependencies.pri */,
65B365CC121C261F003EAD18 /* gpsdisplaygadget.cpp */,
65B365CD121C261F003EAD18 /* gpsdisplaygadget.h */,
65B365CE121C261F003EAD18 /* GpsDisplayGadget.pluginspec */,
65B365CF121C261F003EAD18 /* gpsdisplaygadgetconfiguration.cpp */,
65B365D0121C261F003EAD18 /* gpsdisplaygadgetconfiguration.h */,
65B365D1121C261F003EAD18 /* gpsdisplaygadgetfactory.cpp */,
65B365D2121C261F003EAD18 /* gpsdisplaygadgetfactory.h */,
65B365D3121C261F003EAD18 /* gpsdisplaygadgetoptionspage.cpp */,
65B365D4121C261F003EAD18 /* gpsdisplaygadgetoptionspage.h */,
65B365D5121C261F003EAD18 /* gpsdisplaygadgetoptionspage.ui */,
65B365D6121C261F003EAD18 /* gpsdisplayplugin.cpp */,
65B365D7121C261F003EAD18 /* gpsdisplayplugin.h */,
65B365D8121C261F003EAD18 /* gpsdisplaythread.cpp */,
65B365D9121C261F003EAD18 /* gpsdisplaythread.h */,
65B365DA121C261F003EAD18 /* gpsdisplaywidget.cpp */,
65B365DB121C261F003EAD18 /* gpsdisplaywidget.h */,
65B365DC121C261F003EAD18 /* gpsdisplaywidget.ui */,
65B365DD121C261F003EAD18 /* images */,
65B365E0121C261F003EAD18 /* nmeaparser.cpp */,
65B365E1121C261F003EAD18 /* nmeaparser.h */,
65B365E2121C261F003EAD18 /* widgetresources.qrc */,
);
path = gpsdisplay;
sourceTree = "<group>";
};
65B365DD121C261F003EAD18 /* images */ = {
isa = PBXGroup;
children = (
65B365DE121C261F003EAD18 /* flatEarth.png */,
65B365DF121C261F003EAD18 /* gpsEarth.svg */,
);
path = images;
sourceTree = "<group>";
};
65B365E3121C261F003EAD18 /* hitl */ = {
isa = PBXGroup;
children = (
65B365E4121C261F003EAD18 /* flightgearbridge.cpp */,
65B365E5121C2620003EAD18 /* flightgearbridge.h */,
65B365E6121C2620003EAD18 /* hitl.cpp */,
65B365E7121C2620003EAD18 /* hitl.h */,
65B365E8121C2620003EAD18 /* HITL.pluginspec */,
65B365E9121C2620003EAD18 /* hitl.pro */,
65B365EA121C2620003EAD18 /* hitl_dependencies.pri */,
65B365EB121C2620003EAD18 /* hitlconfiguration.cpp */,
65B365EC121C2620003EAD18 /* hitlconfiguration.h */,
65B365ED121C2620003EAD18 /* hitlfactory.cpp */,
65B365EE121C2620003EAD18 /* hitlfactory.h */,
65B365EF121C2620003EAD18 /* hitloptionspage.cpp */,
65B365F0121C2620003EAD18 /* hitloptionspage.h */,
65B365F1121C2620003EAD18 /* hitloptionspage.ui */,
65B365F2121C2620003EAD18 /* hitlplugin.cpp */,
65B365F3121C2620003EAD18 /* hitlplugin.h */,
65B365F4121C2620003EAD18 /* hitlresources.qrc */,
65B365F5121C2620003EAD18 /* hitlwidget.cpp */,
65B365F6121C2620003EAD18 /* hitlwidget.h */,
65B365F7121C2620003EAD18 /* hitlwidget.ui */,
65B365F8121C2620003EAD18 /* opfgprotocol.xml */,
);
path = hitl;
sourceTree = "<group>";
};
65B365F9121C2620003EAD18 /* hitlil2 */ = {
isa = PBXGroup;
children = (
65B365FA121C2620003EAD18 /* hitlil2.cpp */,
65B365FB121C2620003EAD18 /* hitlil2.h */,
65B365FC121C2620003EAD18 /* HITLIL2.pluginspec */,
65B365FD121C2620003EAD18 /* hitlil2.pro */,
65B365FE121C2620003EAD18 /* hitlil2_dependencies.pri */,
65B365FF121C2620003EAD18 /* hitlil2configuration.cpp */,
65B36600121C2620003EAD18 /* hitlil2configuration.h */,
65B36601121C2620003EAD18 /* hitlil2factory.cpp */,
65B36602121C2620003EAD18 /* hitlil2factory.h */,
65B36603121C2620003EAD18 /* hitlil2optionspage.cpp */,
65B36604121C2620003EAD18 /* hitlil2optionspage.h */,
65B36605121C2620003EAD18 /* hitlil2optionspage.ui */,
65B36606121C2620003EAD18 /* hitlil2plugin.cpp */,
65B36607121C2620003EAD18 /* hitlil2plugin.h */,
65B36608121C2620003EAD18 /* hitlil2widget.cpp */,
65B36609121C2620003EAD18 /* hitlil2widget.h */,
65B3660A121C2620003EAD18 /* hitlil2widget.ui */,
65B3660B121C2620003EAD18 /* il2bridge.cpp */,
65B3660C121C2620003EAD18 /* il2bridge.h */,
);
path = hitlil2;
sourceTree = "<group>";
};
65B3660D121C2620003EAD18 /* importexport */ = {
isa = PBXGroup;
children = (
65B3660E121C2620003EAD18 /* importexport.pro */,
65B3660F121C2620003EAD18 /* importexport_dependencies.pri */,
65B36610121C2620003EAD18 /* importexport_global.h */,
65B36611121C2620003EAD18 /* importexportgadget.cpp */,
65B36612121C2620003EAD18 /* importexportgadget.h */,
65B36613121C2620003EAD18 /* ImportExportGadget.pluginspec */,
65B36614121C2620003EAD18 /* importexportgadgetconfiguration.cpp */,
65B36615121C2620003EAD18 /* importexportgadgetconfiguration.h */,
65B36616121C2620003EAD18 /* importexportgadgetfactory.cpp */,
65B36617121C2620003EAD18 /* importexportgadgetfactory.h */,
65B36618121C2620003EAD18 /* importexportgadgetoptionspage.cpp */,
65B36619121C2620003EAD18 /* importexportgadgetoptionspage.h */,
65B3661A121C2620003EAD18 /* importexportgadgetoptionspage.ui */,
65B3661B121C2620003EAD18 /* importexportgadgetwidget.cpp */,
65B3661C121C2620003EAD18 /* importexportgadgetwidget.h */,
65B3661D121C2620003EAD18 /* importexportgadgetwidget.ui */,
65B3661E121C2620003EAD18 /* importexportplugin.cpp */,
65B3661F121C2620003EAD18 /* importexportplugin.h */,
);
path = importexport;
sourceTree = "<group>";
};
65B36620121C2620003EAD18 /* ipconnection */ = {
isa = PBXGroup;
children = (
65B36621121C2620003EAD18 /* IPconnection.pluginspec */,
65B36622121C2620003EAD18 /* ipconnection.pri */,
65B36623121C2620003EAD18 /* ipconnection.pro */,
65B36624121C2620003EAD18 /* ipconnection_dependencies.pri */,
65B36625121C2620003EAD18 /* ipconnection_global.h */,
65B36626121C2620003EAD18 /* ipconnectionconfiguration.cpp */,
65B36627121C2620003EAD18 /* ipconnectionconfiguration.h */,
65B36628121C2620003EAD18 /* ipconnectionoptionspage.cpp */,
65B36629121C2620003EAD18 /* ipconnectionoptionspage.h */,
65B3662A121C2620003EAD18 /* ipconnectionoptionspage.ui */,
65B3662B121C2620003EAD18 /* ipconnectionplugin.cpp */,
65B3662C121C2620003EAD18 /* ipconnectionplugin.h */,
);
path = ipconnection;
sourceTree = "<group>";
};
65B3662D121C2620003EAD18 /* lineardial */ = {
isa = PBXGroup;
children = (
65B3662E121C2620003EAD18 /* images */,
65B36630121C2620003EAD18 /* lineardial.pro */,
65B36631121C2620003EAD18 /* lineardial.qrc */,
65B36632121C2620003EAD18 /* lineardial_dependencies.pri */,
65B36633121C2620003EAD18 /* lineardialgadget.cpp */,
65B36634121C2620003EAD18 /* lineardialgadget.h */,
65B36635121C2620003EAD18 /* LineardialGadget.pluginspec */,
65B36636121C2620003EAD18 /* lineardialgadgetconfiguration.cpp */,
65B36637121C2620003EAD18 /* lineardialgadgetconfiguration.h */,
65B36638121C2620003EAD18 /* lineardialgadgetfactory.cpp */,
65B36639121C2620003EAD18 /* lineardialgadgetfactory.h */,
65B3663A121C2620003EAD18 /* lineardialgadgetoptionspage.cpp */,
65B3663B121C2620003EAD18 /* lineardialgadgetoptionspage.h */,
65B3663C121C2620003EAD18 /* lineardialgadgetoptionspage.ui */,
65B3663D121C2620003EAD18 /* lineardialgadgetwidget.cpp */,
65B3663E121C2620003EAD18 /* lineardialgadgetwidget.h */,
65B3663F121C2620003EAD18 /* lineardialplugin.cpp */,
65B36640121C2620003EAD18 /* lineardialplugin.h */,
);
path = lineardial;
sourceTree = "<group>";
};
65B3662E121C2620003EAD18 /* images */ = {
isa = PBXGroup;
children = (
65B3662F121C2620003EAD18 /* empty.svg */,
);
path = images;
sourceTree = "<group>";
};
65B36641121C2620003EAD18 /* modelview */ = {
isa = PBXGroup;
children = (
65B36642121C2620003EAD18 /* modelview.pro */,
65B36643121C2620003EAD18 /* modelview_dependencies.pri */,
65B36644121C2620003EAD18 /* modelviewgadget.cpp */,
65B36645121C2620003EAD18 /* modelviewgadget.h */,
65B36646121C2620003EAD18 /* ModelViewGadget.pluginspec */,
65B36647121C2620003EAD18 /* modelviewgadgetconfiguration.cpp */,
65B36648121C2620003EAD18 /* modelviewgadgetconfiguration.h */,
65B36649121C2620003EAD18 /* modelviewgadgetfactory.cpp */,
65B3664A121C2620003EAD18 /* modelviewgadgetfactory.h */,
65B3664B121C2620003EAD18 /* modelviewgadgetoptionspage.cpp */,
65B3664C121C2620003EAD18 /* modelviewgadgetoptionspage.h */,
65B3664D121C2620003EAD18 /* modelviewgadgetwidget.cpp */,
65B3664E121C2620003EAD18 /* modelviewgadgetwidget.h */,
65B3664F121C2620003EAD18 /* modelviewoptionspage.ui */,
65B36650121C2620003EAD18 /* modelviewplugin.cpp */,
65B36651121C2620003EAD18 /* modelviewplugin.h */,
);
path = modelview;
sourceTree = "<group>";
};
65B36652121C2620003EAD18 /* notify */ = {
isa = PBXGroup;
children = (
65B36653121C2620003EAD18 /* images */,
65B3665A121C2620003EAD18 /* notify.pro */,
65B3665B121C2620003EAD18 /* notifyitemdelegate.cpp */,
65B3665C121C2620003EAD18 /* notifyitemdelegate.h */,
65B3665D121C2620003EAD18 /* notifyplugin.cpp */,
65B3665E121C2620003EAD18 /* notifyplugin.h */,
65B3665F121C2620003EAD18 /* NotifyPlugin.pluginspec */,
65B36660121C2620003EAD18 /* notifyplugin_dependencies.pri */,
65B36661121C2620003EAD18 /* notifypluginconfiguration.cpp */,
65B36662121C2620003EAD18 /* notifypluginconfiguration.h */,
65B36663121C2620003EAD18 /* notifypluginfactory.cpp */,
65B36664121C2620003EAD18 /* notifypluginfactory.h */,
65B36665121C2620003EAD18 /* notifyplugingadget.h */,
65B36666121C2620003EAD18 /* notifypluginoptionspage.cpp */,
65B36667121C2620003EAD18 /* notifypluginoptionspage.h */,
65B36668121C2620003EAD18 /* notifypluginoptionspage.ui */,
65B36669121C2620003EAD18 /* notifytablemodel.cpp */,
65B3666A121C2620003EAD18 /* notifytablemodel.h */,
65B3666B121C2620003EAD18 /* res.qrc */,
);
path = notify;
sourceTree = "<group>";
};
65B36653121C2620003EAD18 /* images */ = {
isa = PBXGroup;
children = (
65B36654121C2620003EAD18 /* add.png */,
65B36655121C2620003EAD18 /* delete.png */,
65B36656121C2620003EAD18 /* modify.png */,
65B36657121C2620003EAD18 /* play.png */,
65B36658121C2620003EAD18 /* play2.png */,
65B36659121C2620003EAD18 /* stop.png */,
);
path = images;
sourceTree = "<group>";
};
65B3666C121C2620003EAD18 /* opmap */ = {
isa = PBXGroup;
children = (
65B3666D121C2620003EAD18 /* images */,
65B3668A121C2620003EAD18 /* opmap.pro */,
65B3668B121C2620003EAD18 /* opmap.qrc */,
65B3668C121C2620003EAD18 /* opmap_edit_waypoint_dialog.cpp */,
65B3668D121C2620003EAD18 /* opmap_edit_waypoint_dialog.h */,
65B3668E121C2620003EAD18 /* opmap_edit_waypoint_dialog.ui */,
65B3668F121C2620003EAD18 /* opmap_overlay_widget.cpp */,
65B36690121C2620003EAD18 /* opmap_overlay_widget.h */,
65B36691121C2620003EAD18 /* opmap_overlay_widget.ui */,
65B36692121C2620003EAD18 /* opmap_statusbar_widget.cpp */,
65B36693121C2620003EAD18 /* opmap_statusbar_widget.h */,
65B36694121C2620003EAD18 /* opmap_statusbar_widget.ui */,
65B36695121C2620003EAD18 /* opmap_waypointeditor_dialog.cpp */,
65B36696121C2620003EAD18 /* opmap_waypointeditor_dialog.h */,
65B36697121C2620003EAD18 /* opmap_waypointeditor_dialog.ui */,
65B36698121C2620003EAD18 /* opmap_widget.ui */,
65B36699121C2620003EAD18 /* opmap_zoom_slider_widget.cpp */,
65B3669A121C2620003EAD18 /* opmap_zoom_slider_widget.h */,
65B3669B121C2620003EAD18 /* opmap_zoom_slider_widget.ui */,
65B3669C121C2620003EAD18 /* opmapgadget.cpp */,
65B3669D121C2620003EAD18 /* opmapgadget.h */,
65B3669E121C2620003EAD18 /* OPMapGadget.pluginspec */,
65B3669F121C2620003EAD18 /* opmapgadgetconfiguration.cpp */,
65B366A0121C2620003EAD18 /* opmapgadgetconfiguration.h */,
65B366A1121C2620003EAD18 /* opmapgadgetfactory.cpp */,
65B366A2121C2620003EAD18 /* opmapgadgetfactory.h */,
65B366A3121C2620003EAD18 /* opmapgadgetoptionspage.cpp */,
65B366A4121C2620003EAD18 /* opmapgadgetoptionspage.h */,
65B366A5121C2620003EAD18 /* opmapgadgetoptionspage.ui */,
65B366A6121C2620003EAD18 /* opmapgadgetwidget.cpp */,
65B366A7121C2620003EAD18 /* opmapgadgetwidget.h */,
65B366A8121C2620003EAD18 /* opmapplugin.cpp */,
65B366A9121C2620003EAD18 /* opmapplugin.h */,
);
path = opmap;
sourceTree = "<group>";
};
65B3666D121C2620003EAD18 /* images */ = {
isa = PBXGroup;
children = (
65B3666E121C2620003EAD18 /* Blank.psd */,
65B3666F121C2620003EAD18 /* Blank_Pressed.psd */,
65B36670121C2620003EAD18 /* button_bar.png */,
65B36671121C2620003EAD18 /* circle.png */,
65B36672121C2620003EAD18 /* combobox_down_arrow.png */,
65B36673121C2620003EAD18 /* gcs.png */,
65B36674121C2620003EAD18 /* go.png */,
65B36675121C2620003EAD18 /* hold.png */,
65B36676121C2620003EAD18 /* home.png */,
65B36677121C2620003EAD18 /* hover.png */,
65B36678121C2620003EAD18 /* left_but.png */,
65B36679121C2620003EAD18 /* minus.png */,
65B3667A121C2620003EAD18 /* minus2.png */,
65B3667B121C2620003EAD18 /* next_waypoint.png */,
65B3667C121C2620003EAD18 /* ok.png */,
65B3667D121C2620003EAD18 /* pause.png */,
65B3667E121C2620003EAD18 /* plus.png */,
65B3667F121C2620003EAD18 /* plus2.png */,
65B36680121C2620003EAD18 /* prev_waypoint.png */,
65B36681121C2620003EAD18 /* right_but.png */,
65B36682121C2620003EAD18 /* stop.png */,
65B36683121C2620003EAD18 /* uav.png */,
65B36684121C2620003EAD18 /* uav_heading.png */,
65B36685121C2620003EAD18 /* uav_trail.png */,
65B36686121C2620003EAD18 /* uav_trail_clear.png */,
65B36687121C2620003EAD18 /* waypoint.png */,
65B36688121C2620003EAD18 /* waypoint_marker1.png */,
65B36689121C2620003EAD18 /* waypoint_marker2.png */,
);
path = images;
sourceTree = "<group>";
};
65B366AA121C2620003EAD18 /* pfd */ = {
isa = PBXGroup;
children = (
65B366AB121C2620003EAD18 /* images */,
65B366AD121C2620003EAD18 /* pfd.pro */,
65B366AE121C2620003EAD18 /* pfd.qrc */,
65B366AF121C2620003EAD18 /* pfd_dependencies.pri */,
65B366B0121C2620003EAD18 /* pfdgadget.cpp */,
65B366B1121C2620003EAD18 /* pfdgadget.h */,
65B366B2121C2620003EAD18 /* PFDGadget.pluginspec */,
65B366B3121C2620003EAD18 /* pfdgadgetconfiguration.cpp */,
65B366B4121C2620003EAD18 /* pfdgadgetconfiguration.h */,
65B366B5121C2620003EAD18 /* pfdgadgetfactory.cpp */,
65B366B6121C2620003EAD18 /* pfdgadgetfactory.h */,
65B366B7121C2620003EAD18 /* pfdgadgetoptionspage.cpp */,
65B366B8121C2620003EAD18 /* pfdgadgetoptionspage.h */,
65B366B9121C2620003EAD18 /* pfdgadgetoptionspage.ui */,
65B366BA121C2620003EAD18 /* pfdgadgetwidget.cpp */,
65B366BB121C2620003EAD18 /* pfdgadgetwidget.h */,
65B366BC121C2620003EAD18 /* pfdplugin.cpp */,
65B366BD121C2620003EAD18 /* pfdplugin.h */,
);
path = pfd;
sourceTree = "<group>";
};
65B366AB121C2620003EAD18 /* images */ = {
isa = PBXGroup;
children = (
65B366AC121C2620003EAD18 /* pfd-default.svg */,
);
path = images;
sourceTree = "<group>";
};
65B366BF121C2620003EAD18 /* rawhid */ = {
isa = PBXGroup;
children = (
65B366C0121C2620003EAD18 /* pjrc_rawhid.h */,
65B366C1121C2620003EAD18 /* pjrc_rawhid_mac.cpp */,
65B366C2121C2620003EAD18 /* pjrc_rawhid_unix.cpp */,
65B366C3121C2620003EAD18 /* pjrc_rawhid_win.cpp */,
65B366C4121C2620003EAD18 /* rawhid.cpp */,
65B366C5121C2620003EAD18 /* rawhid.h */,
65B366C6121C2620003EAD18 /* RawHID.pluginspec */,
65B366C7121C2620003EAD18 /* rawhid.pri */,
65B366C8121C2620003EAD18 /* rawhid.pro */,
65B366C9121C2620003EAD18 /* rawhid_const.h */,
65B366CA121C2620003EAD18 /* rawhid_dependencies.pri */,
65B366CB121C2620003EAD18 /* rawhid_global.h */,
65B366CC121C2620003EAD18 /* rawhidplugin.cpp */,
65B366CD121C2620003EAD18 /* rawhidplugin.h */,
);
path = rawhid;
sourceTree = "<group>";
};
65B366CE121C2620003EAD18 /* scope */ = {
isa = PBXGroup;
children = (
65B366CF121C2620003EAD18 /* plotdata.cpp */,
65B366D0121C2620003EAD18 /* plotdata.h */,
65B366D1121C2620003EAD18 /* scope.pro */,
65B366D2121C2620003EAD18 /* scopegadget.cpp */,
65B366D3121C2620003EAD18 /* scopegadget.h */,
65B366D4121C2620003EAD18 /* ScopeGadget.pluginspec */,
65B366D5121C2620003EAD18 /* scopegadgetconfiguration.cpp */,
65B366D6121C2620003EAD18 /* scopegadgetconfiguration.h */,
65B366D7121C2620003EAD18 /* scopegadgetfactory.cpp */,
65B366D8121C2620003EAD18 /* scopegadgetfactory.h */,
65B366D9121C2620003EAD18 /* scopegadgetoptionspage.cpp */,
65B366DA121C2620003EAD18 /* scopegadgetoptionspage.h */,
65B366DB121C2620003EAD18 /* scopegadgetoptionspage.ui */,
65B366DC121C2620003EAD18 /* scopegadgetwidget.cpp */,
65B366DD121C2620003EAD18 /* scopegadgetwidget.h */,
65B366DE121C2620003EAD18 /* scopeplugin.cpp */,
65B366DF121C2620003EAD18 /* scopeplugin.h */,
);
path = scope;
sourceTree = "<group>";
};
65B366E0121C2620003EAD18 /* serialconnection */ = {
isa = PBXGroup;
children = (
65B366E1121C2620003EAD18 /* Serial.pluginspec */,
65B366E2121C2620003EAD18 /* serial.pri */,
65B366E3121C2620003EAD18 /* serial_dependencies.pri */,
65B366E4121C2620003EAD18 /* serial_global.h */,
65B366E5121C2620003EAD18 /* serialconnection.pro */,
65B366E6121C2620003EAD18 /* serialplugin.cpp */,
65B366E7121C2620003EAD18 /* serialplugin.h */,
);
path = serialconnection;
sourceTree = "<group>";
};
65B366E8121C2620003EAD18 /* systemhealth */ = {
isa = PBXGroup;
children = (
65B366E9121C2620003EAD18 /* systemhealth.pro */,
65B366EA121C2620003EAD18 /* systemhealth_dependencies.pri */,
65B366EB121C2620003EAD18 /* systemhealthgadget.cpp */,
65B366EC121C2620003EAD18 /* systemhealthgadget.h */,
65B366ED121C2620003EAD18 /* SystemHealthGadget.pluginspec */,
65B366EE121C2620003EAD18 /* systemhealthgadgetconfiguration.cpp */,
65B366EF121C2620003EAD18 /* systemhealthgadgetconfiguration.h */,
65B366F0121C2620003EAD18 /* systemhealthgadgetfactory.cpp */,
65B366F1121C2620003EAD18 /* systemhealthgadgetfactory.h */,
65B366F2121C2620003EAD18 /* systemhealthgadgetoptionspage.cpp */,
65B366F3121C2620003EAD18 /* systemhealthgadgetoptionspage.h */,
65B366F4121C2620003EAD18 /* systemhealthgadgetoptionspage.ui */,
65B366F5121C2620003EAD18 /* systemhealthgadgetwidget.cpp */,
65B366F6121C2620003EAD18 /* systemhealthgadgetwidget.h */,
65B366F7121C2620003EAD18 /* systemhealthplugin.cpp */,
65B366F8121C2620003EAD18 /* systemhealthplugin.h */,
);
path = systemhealth;
sourceTree = "<group>";
};
65B366F9121C2620003EAD18 /* uavobjectbrowser */ = {
isa = PBXGroup;
children = (
65B366FA121C2620003EAD18 /* browseritemdelegate.cpp */,
65B366FB121C2620003EAD18 /* browseritemdelegate.h */,
65B366FC121C2620003EAD18 /* browserplugin.cpp */,
65B366FD121C2620003EAD18 /* browserplugin.h */,
65B366FE121C2620003EAD18 /* fieldtreeitem.cpp */,
65B366FF121C2620003EAD18 /* fieldtreeitem.h */,
65B36700121C2620003EAD18 /* treeitem.cpp */,
65B36701121C2620003EAD18 /* treeitem.h */,
65B36702121C2620003EAD18 /* uavobjectbrowser.cpp */,
65B36703121C2620003EAD18 /* uavobjectbrowser.h */,
65B36704121C2620003EAD18 /* UAVObjectBrowser.pluginspec */,
65B36705121C2620003EAD18 /* uavobjectbrowser.pro */,
65B36706121C2620003EAD18 /* uavobjectbrowser.ui */,
65B36707121C2620003EAD18 /* uavobjectbrowser_dependencies.pri */,
65B36708121C2620003EAD18 /* uavobjectbrowserconfiguration.cpp */,
65B36709121C2620003EAD18 /* uavobjectbrowserconfiguration.h */,
65B3670A121C2620003EAD18 /* uavobjectbrowserfactory.cpp */,
65B3670B121C2620003EAD18 /* uavobjectbrowserfactory.h */,
65B3670C121C2620003EAD18 /* uavobjectbrowseroptionspage.cpp */,
65B3670D121C2620003EAD18 /* uavobjectbrowseroptionspage.h */,
65B3670E121C2620003EAD18 /* uavobjectbrowseroptionspage.ui */,
65B3670F121C2620003EAD18 /* uavobjectbrowserwidget.cpp */,
65B36710121C2620003EAD18 /* uavobjectbrowserwidget.h */,
65B36711121C2620003EAD18 /* uavobjecttreemodel.cpp */,
65B36712121C2620003EAD18 /* uavobjecttreemodel.h */,
);
path = uavobjectbrowser;
sourceTree = "<group>";
};
65B36713121C2620003EAD18 /* uavobjects */ = {
isa = PBXGroup;
children = (
65B36714121C2620003EAD18 /* actuatorcommand.cpp */,
65B36715121C2620003EAD18 /* actuatorcommand.h */,
65B36716121C2620003EAD18 /* actuatorcommand.py */,
65B36717121C2620003EAD18 /* actuatordesired.cpp */,
65B36718121C2620003EAD18 /* actuatordesired.h */,
65B36719121C2620003EAD18 /* actuatordesired.py */,
65B3671A121C2620003EAD18 /* actuatorsettings.cpp */,
65B3671B121C2620003EAD18 /* actuatorsettings.h */,
65B3671C121C2620003EAD18 /* actuatorsettings.py */,
65B3671D121C2620003EAD18 /* ahrsstatus.cpp */,
65B3671E121C2620003EAD18 /* ahrsstatus.h */,
65B3671F121C2620003EAD18 /* ahrsstatus.py */,
65B36720121C2620003EAD18 /* altitudeactual.cpp */,
65B36721121C2620003EAD18 /* altitudeactual.h */,
65B36722121C2620003EAD18 /* altitudeactual.py */,
65B36723121C2620003EAD18 /* attitudeactual.cpp */,
65B36724121C2620003EAD18 /* attitudeactual.h */,
65B36725121C2620003EAD18 /* attitudeactual.py */,
65B36726121C2620003EAD18 /* attitudedesired.cpp */,
65B36727121C2620003EAD18 /* attitudedesired.h */,
65B36728121C2620003EAD18 /* attitudedesired.py */,
65B36729121C2620003EAD18 /* attituderaw.cpp */,
65B3672A121C2620003EAD18 /* attituderaw.h */,
65B3672B121C2620003EAD18 /* attituderaw.py */,
65B3672C121C2620003EAD18 /* attitudesettings.cpp */,
65B3672D121C2620003EAD18 /* attitudesettings.h */,
65B3672E121C2620003EAD18 /* attitudesettings.py */,
65B3672F121C2620003EAD18 /* exampleobject1.cpp */,
65B36730121C2620003EAD18 /* exampleobject1.h */,
65B36731121C2620003EAD18 /* exampleobject1.py */,
65B36732121C2620003EAD18 /* exampleobject2.cpp */,
65B36733121C2620003EAD18 /* exampleobject2.h */,
65B36734121C2620003EAD18 /* exampleobject2.py */,
65B36735121C2620003EAD18 /* examplesettings.cpp */,
65B36736121C2620003EAD18 /* examplesettings.h */,
65B36737121C2620003EAD18 /* examplesettings.py */,
65B36738121C2620003EAD18 /* flightbatterystate.cpp */,
65B36739121C2620003EAD18 /* flightbatterystate.h */,
65B3673A121C2620003EAD18 /* flightbatterystate.py */,
65B3673B121C2620003EAD18 /* flightsituationactual.cpp */,
65B3673C121C2620003EAD18 /* flightsituationactual.h */,
65B3673D121C2620003EAD18 /* flightsituationactual.py */,
65B3673E121C2620003EAD18 /* flighttelemetrystats.cpp */,
65B3673F121C2620003EAD18 /* flighttelemetrystats.h */,
65B36740121C2620003EAD18 /* flighttelemetrystats.py */,
65B36741121C2620003EAD18 /* gcstelemetrystats.cpp */,
65B36742121C2620003EAD18 /* gcstelemetrystats.h */,
65B36743121C2620003EAD18 /* gcstelemetrystats.py */,
65B36744121C2620003EAD18 /* manualcontrolcommand.cpp */,
65B36745121C2620003EAD18 /* manualcontrolcommand.h */,
65B36746121C2620003EAD18 /* manualcontrolcommand.py */,
65B36747121C2620003EAD18 /* manualcontrolsettings.cpp */,
65B36748121C2620003EAD18 /* manualcontrolsettings.h */,
65B36749121C2620003EAD18 /* manualcontrolsettings.py */,
65B3674A121C2620003EAD18 /* navigationdesired.cpp */,
65B3674B121C2620003EAD18 /* navigationdesired.h */,
65B3674C121C2620003EAD18 /* navigationdesired.py */,
65B3674D121C2620003EAD18 /* navigationsettings.cpp */,
65B3674E121C2620003EAD18 /* navigationsettings.h */,
65B3674F121C2620003EAD18 /* navigationsettings.py */,
65B36750121C2620003EAD18 /* objectpersistence.cpp */,
65B36751121C2620003EAD18 /* objectpersistence.h */,
65B36752121C2620003EAD18 /* objectpersistence.py */,
65B36753121C2620003EAD18 /* positionactual.cpp */,
65B36754121C2620003EAD18 /* positionactual.h */,
65B36755121C2620003EAD18 /* positionactual.py */,
65B36756121C2620003EAD18 /* stabilizationsettings.cpp */,
65B36757121C2620003EAD18 /* stabilizationsettings.h */,
65B36758121C2620003EAD18 /* stabilizationsettings.py */,
65B36759121C2620003EAD18 /* systemalarms.cpp */,
65B3675A121C2620003EAD18 /* systemalarms.h */,
65B3675B121C2620003EAD18 /* systemalarms.py */,
65B3675C121C2620003EAD18 /* systemsettings.cpp */,
65B3675D121C2620003EAD18 /* systemsettings.h */,
65B3675E121C2620003EAD18 /* systemsettings.py */,
65B3675F121C2620003EAD18 /* systemstats.cpp */,
65B36760121C2620003EAD18 /* systemstats.h */,
65B36761121C2620003EAD18 /* systemstats.py */,
65B36762121C2620003EAD18 /* telemetrysettings.cpp */,
65B36763121C2620003EAD18 /* telemetrysettings.h */,
65B36764121C2620003EAD18 /* telemetrysettings.py */,
65B36765121C2620003EAD18 /* tests */,
65B3676A121C2620003EAD18 /* uavdataobject.cpp */,
65B3676B121C2620003EAD18 /* uavdataobject.h */,
65B3676C121C2620003EAD18 /* uavmetaobject.cpp */,
65B3676D121C2620003EAD18 /* uavmetaobject.h */,
65B3676E121C2620003EAD18 /* uavobject.cpp */,
65B3676F121C2620003EAD18 /* uavobject.h */,
65B36770121C2620003EAD18 /* uavobject.py */,
65B36771121C2620003EAD18 /* uavobjectfield.cpp */,
65B36772121C2620003EAD18 /* uavobjectfield.h */,
65B36773121C2620003EAD18 /* uavobjectmanager.cpp */,
65B36774121C2620003EAD18 /* uavobjectmanager.h */,
65B36775121C2620003EAD18 /* UAVObjects.pluginspec */,
65B36776121C2620003EAD18 /* uavobjects.pri */,
65B36777121C2620003EAD18 /* uavobjects.pro */,
65B36778121C2620003EAD18 /* uavobjects_dependencies.pri */,
65B36779121C2620003EAD18 /* uavobjects_global.h */,
65B3677A121C2620003EAD18 /* uavobjectsinit.cpp */,
65B3677B121C2620003EAD18 /* uavobjectsinit.h */,
65B3677C121C2620003EAD18 /* uavobjectsinittemplate.cpp */,
65B3677D121C2620003EAD18 /* uavobjectsplugin.cpp */,
65B3677E121C2620003EAD18 /* uavobjectsplugin.h */,
65B3677F121C2620003EAD18 /* uavobjecttemplate.cpp */,
65B36780121C2620003EAD18 /* uavobjecttemplate.h */,
65B36781121C2620003EAD18 /* uavobjecttemplate.py */,
);
path = uavobjects;
sourceTree = "<group>";
};
65B36765121C2620003EAD18 /* tests */ = {
isa = PBXGroup;
children = (
65B36766121C2620003EAD18 /* main.cpp */,
65B36767121C2620003EAD18 /* uavobjectstest.cpp */,
65B36768121C2620003EAD18 /* uavobjectstest.h */,
65B36769121C2620003EAD18 /* uavobjectstest.pro */,
);
path = tests;
sourceTree = "<group>";
};
65B36782121C2620003EAD18 /* uavtalk */ = {
isa = PBXGroup;
children = (
65B36783121C2620003EAD18 /* telemetry.cpp */,
65B36784121C2620003EAD18 /* telemetry.h */,
65B36785121C2620003EAD18 /* telemetrymanager.cpp */,
65B36786121C2620003EAD18 /* telemetrymanager.h */,
65B36787121C2620003EAD18 /* telemetrymonitor.cpp */,
65B36788121C2620003EAD18 /* telemetrymonitor.h */,
65B36789121C2620003EAD18 /* uavtalk.cpp */,
65B3678A121C2620003EAD18 /* uavtalk.h */,
65B3678B121C2620003EAD18 /* UAVTalk.pluginspec */,
65B3678C121C2620003EAD18 /* uavtalk.pri */,
65B3678D121C2620003EAD18 /* uavtalk.pro */,
65B3678E121C2620003EAD18 /* uavtalk_dependencies.pri */,
65B3678F121C2620003EAD18 /* uavtalk_global.h */,
65B36790121C2620003EAD18 /* uavtalkplugin.cpp */,
65B36791121C2620003EAD18 /* uavtalkplugin.h */,
);
path = uavtalk;
sourceTree = "<group>";
};
65B36792121C2620003EAD18 /* uploader */ = {
isa = PBXGroup;
children = (
65B36793121C2620003EAD18 /* Uploader.pluginspec */,
65B36794121C2620003EAD18 /* uploader.pro */,
65B36795121C2620003EAD18 /* uploadergadget.cpp */,
65B36796121C2620003EAD18 /* uploadergadget.h */,
65B36797121C2620003EAD18 /* uploadergadgetconfiguration.cpp */,
65B36798121C2620003EAD18 /* uploadergadgetconfiguration.h */,
65B36799121C2620003EAD18 /* uploadergadgetfactory.cpp */,
65B3679A121C2620003EAD18 /* uploadergadgetfactory.h */,
65B3679B121C2620003EAD18 /* uploadergadgetoptionspage.cpp */,
65B3679C121C2620003EAD18 /* uploadergadgetoptionspage.h */,
65B3679D121C2620003EAD18 /* uploadergadgetwidget.cpp */,
65B3679E121C2620003EAD18 /* uploadergadgetwidget.h */,
65B3679F121C2620003EAD18 /* uploaderplugin.cpp */,
65B367A0121C2620003EAD18 /* uploaderplugin.h */,
);
path = uploader;
sourceTree = "<group>";
};
65B367A1121C2620003EAD18 /* welcome */ = {
isa = PBXGroup;
children = (
65B367A2121C2620003EAD18 /* communitywelcomepage.cpp */,
65B367A3121C2620003EAD18 /* communitywelcomepage.h */,
65B367A4121C2620003EAD18 /* communitywelcomepagewidget.cpp */,
65B367A5121C2620003EAD18 /* communitywelcomepagewidget.h */,
65B367A6121C2620003EAD18 /* communitywelcomepagewidget.ui */,
65B367A7121C2620003EAD18 /* images */,
65B367BB121C2620003EAD18 /* rssfetcher.cpp */,
65B367BC121C2620003EAD18 /* rssfetcher.h */,
65B367BD121C2620003EAD18 /* Welcome.pluginspec */,
65B367BE121C2620003EAD18 /* welcome.pri */,
65B367BF121C2620003EAD18 /* welcome.pro */,
65B367C0121C2620003EAD18 /* welcome.qrc */,
65B367C1121C2620003EAD18 /* welcome_dependencies.pri */,
65B367C2121C2620003EAD18 /* welcome_global.h */,
65B367C3121C2620003EAD18 /* welcomemode.cpp */,
65B367C4121C2620003EAD18 /* welcomemode.h */,
65B367C5121C2620003EAD18 /* welcomemode.ui */,
65B367C6121C2620003EAD18 /* welcomeplugin.cpp */,
65B367C7121C2620003EAD18 /* welcomeplugin.h */,
);
path = welcome;
sourceTree = "<group>";
};
65B367A7121C2620003EAD18 /* images */ = {
isa = PBXGroup;
children = (
65B367A8121C2620003EAD18 /* arrow-left.png */,
65B367A9121C2620003EAD18 /* arrow-right.png */,
65B367AA121C2620003EAD18 /* background_center_frame.png */,
65B367AB121C2620003EAD18 /* btn_26.png */,
65B367AC121C2620003EAD18 /* btn_26_hover.png */,
65B367AD121C2620003EAD18 /* btn_26_pressed.png */,
65B367AE121C2620003EAD18 /* btn_27.png */,
65B367AF121C2620003EAD18 /* btn_27_hover.png */,
65B367B0121C2620003EAD18 /* center_frame_header.png */,
65B367B1121C2620003EAD18 /* combobox_arrow.png */,
65B367B2121C2620003EAD18 /* feedback-bar-background.png */,
65B367B3121C2620003EAD18 /* feedback_arrow.png */,
65B367B4121C2620003EAD18 /* feedback_arrow_hover.png */,
65B367B5121C2620003EAD18 /* list_bullet_arrow.png */,
65B367B6121C2620003EAD18 /* mode_project.png */,
65B367B7121C2620003EAD18 /* nokia_logo.png */,
65B367B8121C2620003EAD18 /* product_logo.png */,
65B367B9121C2620003EAD18 /* qt_logo.png */,
65B367BA121C2620003EAD18 /* rc_combined.png */,
);
path = images;
sourceTree = "<group>";
};
65B367C9121C2620003EAD18 /* shared */ = {
isa = PBXGroup;
children = (
65B367CA121C2620003EAD18 /* namespace_global.h */,
65B367CB121C2620003EAD18 /* qtlockedfile */,
65B367D3121C2620003EAD18 /* qtsingleapplication */,
65B367DE121C2620003EAD18 /* scriptwrapper */,
65B367E3121C2620003EAD18 /* uavobjectdefinition */,
);
path = shared;
sourceTree = "<group>";
};
65B367CB121C2620003EAD18 /* qtlockedfile */ = {
isa = PBXGroup;
children = (
65B367CC121C2620003EAD18 /* namespace.patch */,
65B367CD121C2620003EAD18 /* qtlockedfile.cpp */,
65B367CE121C2620003EAD18 /* qtlockedfile.h */,
65B367CF121C2620003EAD18 /* qtlockedfile.pri */,
65B367D0121C2620003EAD18 /* qtlockedfile_unix.cpp */,
65B367D1121C2620003EAD18 /* qtlockedfile_win.cpp */,
65B367D2121C2620003EAD18 /* README.txt */,
);
path = qtlockedfile;
sourceTree = "<group>";
};
65B367D3121C2620003EAD18 /* qtsingleapplication */ = {
isa = PBXGroup;
children = (
65B367D4121C2620003EAD18 /* namespace.patch */,
65B367D5121C2620003EAD18 /* qtlocalpeer.cpp */,
65B367D6121C2620003EAD18 /* qtlocalpeer.h */,
65B367D7121C2620003EAD18 /* qtsingleapplication.cpp */,
65B367D8121C2620003EAD18 /* qtsingleapplication.h */,
65B367D9121C2620003EAD18 /* qtsingleapplication.pri */,
65B367DA121C2620003EAD18 /* qtsinglecoreapplication.cpp */,
65B367DB121C2620003EAD18 /* qtsinglecoreapplication.h */,
65B367DC121C2620003EAD18 /* qtsinglecoreapplication.pri */,
65B367DD121C2620003EAD18 /* README.txt */,
);
path = qtsingleapplication;
sourceTree = "<group>";
};
65B367DE121C2620003EAD18 /* scriptwrapper */ = {
isa = PBXGroup;
children = (
65B367DF121C2620003EAD18 /* interface_wrap_helpers.h */,
65B367E0121C2620003EAD18 /* README */,
65B367E1121C2620003EAD18 /* scriptwrapper.pri */,
65B367E2121C2620003EAD18 /* wrap_helpers.h */,
);
path = scriptwrapper;
sourceTree = "<group>";
};
65B367E3121C2620003EAD18 /* uavobjectdefinition */ = {
isa = PBXGroup;
children = (
65B367E4121C2620003EAD18 /* actuatorcommand.xml */,
65B367E5121C2620003EAD18 /* actuatordesired.xml */,
65B367E6121C2620003EAD18 /* actuatorsettings.xml */,
65B367E7121C2620003EAD18 /* ahrsstatus.xml */,
65B367E8121C2620003EAD18 /* altitudeactual.xml */,
65B367E9121C2620003EAD18 /* attitudeactual.xml */,
65B367EA121C2620003EAD18 /* attitudedesired.xml */,
65B367EB121C2620003EAD18 /* attituderaw.xml */,
65B367EC121C2620003EAD18 /* attitudesettings.xml */,
65B367ED121C2620003EAD18 /* exampleobject1.xml */,
65B367EE121C2620003EAD18 /* exampleobject2.xml */,
65B367EF121C2620003EAD18 /* examplesettings.xml */,
65B367F0121C2620003EAD18 /* flightbatterystate.xml */,
65B367F1121C2620003EAD18 /* flightsituationactual.xml */,
65B367F2121C2620003EAD18 /* flighttelemetrystats.xml */,
65B367F3121C2620003EAD18 /* gcstelemetrystats.xml */,
65B367F4121C2620003EAD18 /* manualcontrolcommand.xml */,
65B367F5121C2620003EAD18 /* manualcontrolsettings.xml */,
65B367F6121C2620003EAD18 /* navigationdesired.xml */,
65B367F7121C2620003EAD18 /* navigationsettings.xml */,
65B367F8121C2620003EAD18 /* objectpersistence.xml */,
65B367F9121C2620003EAD18 /* positionactual.xml */,
65B367FA121C2620003EAD18 /* stabilizationsettings.xml */,
65B367FB121C2620003EAD18 /* systemalarms.xml */,
65B367FC121C2620003EAD18 /* systemsettings.xml */,
65B367FD121C2620003EAD18 /* systemstats.xml */,
65B367FE121C2620003EAD18 /* telemetrysettings.xml */,
);
path = uavobjectdefinition;
sourceTree = "<group>";
};
65B7E6AC120DF1CD000C1123 /* AHRS */ = {
isa = PBXGroup;
children = (

View File

@ -52,15 +52,25 @@ AttitudeRaw::AttitudeRaw(): UAVDataObject(OBJID, ISSINGLEINST, ISSETTINGS, NAME)
gyrosElemNames.append("Y");
gyrosElemNames.append("Z");
fields.append( new UAVObjectField(QString("gyros"), QString("raw"), UAVObjectField::UINT16, gyrosElemNames, QStringList()) );
QStringList gyros_filteredElemNames;
gyros_filteredElemNames.append("X");
gyros_filteredElemNames.append("Y");
gyros_filteredElemNames.append("Z");
fields.append( new UAVObjectField(QString("gyros_filtered"), QString("deg/s"), UAVObjectField::FLOAT32, gyros_filteredElemNames, QStringList()) );
QStringList gyrotempElemNames;
gyrotempElemNames.append("XY");
gyrotempElemNames.append("Z");
fields.append( new UAVObjectField(QString("gyrotemp"), QString("raw"), UAVObjectField::UINT16, gyrotempElemNames, QStringList()) );
QStringList accelerometersElemNames;
accelerometersElemNames.append("X");
accelerometersElemNames.append("Y");
accelerometersElemNames.append("Z");
fields.append( new UAVObjectField(QString("accelerometers"), QString("raw"), UAVObjectField::UINT16, accelerometersElemNames, QStringList()) );
QStringList accelsElemNames;
accelsElemNames.append("X");
accelsElemNames.append("Y");
accelsElemNames.append("Z");
fields.append( new UAVObjectField(QString("accels"), QString("raw"), UAVObjectField::UINT16, accelsElemNames, QStringList()) );
QStringList accels_filteredElemNames;
accels_filteredElemNames.append("X");
accels_filteredElemNames.append("Y");
accels_filteredElemNames.append("Z");
fields.append( new UAVObjectField(QString("accels_filtered"), QString("m/s"), UAVObjectField::FLOAT32, accels_filteredElemNames, QStringList()) );
// Initialize object
initializeFields(fields, (quint8*)&data, NUMBYTES);

View File

@ -45,8 +45,10 @@ public:
typedef struct {
qint16 magnetometers[3];
quint16 gyros[3];
float gyros_filtered[3];
quint16 gyrotemp[2];
quint16 accelerometers[3];
quint16 accels[3];
float accels_filtered[3];
} __attribute__((packed)) DataFields;
@ -61,20 +63,30 @@ public:
typedef enum { GYROS_X=0, GYROS_Y=1, GYROS_Z=2 } gyrosElem;
/* Number of elements for field gyros */
static const quint32 GYROS_NUMELEM = 3;
// Field gyros_filtered information
/* Array element names for field gyros_filtered */
typedef enum { GYROS_FILTERED_X=0, GYROS_FILTERED_Y=1, GYROS_FILTERED_Z=2 } gyros_filteredElem;
/* Number of elements for field gyros_filtered */
static const quint32 GYROS_FILTERED_NUMELEM = 3;
// Field gyrotemp information
/* Array element names for field gyrotemp */
typedef enum { GYROTEMP_XY=0, GYROTEMP_Z=1 } gyrotempElem;
/* Number of elements for field gyrotemp */
static const quint32 GYROTEMP_NUMELEM = 2;
// Field accelerometers information
/* Array element names for field accelerometers */
typedef enum { ACCELEROMETERS_X=0, ACCELEROMETERS_Y=1, ACCELEROMETERS_Z=2 } accelerometersElem;
/* Number of elements for field accelerometers */
static const quint32 ACCELEROMETERS_NUMELEM = 3;
// Field accels information
/* Array element names for field accels */
typedef enum { ACCELS_X=0, ACCELS_Y=1, ACCELS_Z=2 } accelsElem;
/* Number of elements for field accels */
static const quint32 ACCELS_NUMELEM = 3;
// Field accels_filtered information
/* Array element names for field accels_filtered */
typedef enum { ACCELS_FILTERED_X=0, ACCELS_FILTERED_Y=1, ACCELS_FILTERED_Z=2 } accels_filteredElem;
/* Number of elements for field accels_filtered */
static const quint32 ACCELS_FILTERED_NUMELEM = 3;
// Constants
static const quint32 OBJID = 4179445416U;
static const quint32 OBJID = 1323193976U;
static const QString NAME;
static const bool ISSINGLEINST = 1;
static const bool ISSETTINGS = 0;

View File

@ -61,6 +61,18 @@ _fields = [ \
{
}
),
uavobject.UAVObjectField(
'gyros_filtered',
'f',
3,
[
'X',
'Y',
'Z',
],
{
}
),
uavobject.UAVObjectField(
'gyrotemp',
'H',
@ -73,7 +85,7 @@ _fields = [ \
}
),
uavobject.UAVObjectField(
'accelerometers',
'accels',
'H',
3,
[
@ -84,12 +96,24 @@ _fields = [ \
{
}
),
uavobject.UAVObjectField(
'accels_filtered',
'f',
3,
[
'X',
'Y',
'Z',
],
{
}
),
]
class AttitudeRaw(uavobject.UAVObject):
## Object constants
OBJID = 4179445416
OBJID = 1323193976
NAME = "AttitudeRaw"
METANAME = "AttitudeRawMeta"
ISSINGLEINST = 1

View File

@ -2,8 +2,10 @@
<object name="AttitudeRaw" singleinstance="true" settings="false">
<field name="magnetometers" units="mGa" type="int16" elementnames="X,Y,Z"/>
<field name="gyros" units="raw" type="uint16" elementnames="X,Y,Z"/>
<field name="gyros_filtered" units="deg/s" type="float" elementnames="X,Y,Z"/>
<field name="gyrotemp" units="raw" type="uint16" elementnames="XY,Z"/>
<field name="accelerometers" units="raw" type="uint16" elementnames="X,Y,Z"/>
<field name="accels" units="raw" type="uint16" elementnames="X,Y,Z"/>
<field name="accels_filtered" units="m/s" type="float" elementnames="X,Y,Z"/>
<access gcs="readwrite" flight="readwrite"/>
<telemetrygcs acked="false" updatemode="manual" period="0"/>
<telemetryflight acked="false" updatemode="periodic" period="1000"/>