00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef TEFLOCATION_H
00024 #define TEFLOCATION_H
00025
00026
00027 #include <e32std.h>
00028 #include <AudioEffectData.h>
00029
00030
00031
00042 class TEfLocation : public TEfCommon
00043 {
00044 public:
00045
00049 TEfLocation() {}
00050
00054 TEfLocation( TInt32 aXCoordinate, TInt32 aYCoordinate, TInt32 aZCoordinate,
00055 TInt32 aAzimuth, TInt32 aElevation, TInt32 aRadius ):
00056 iXCoordinate(aXCoordinate), iYCoordinate(aYCoordinate), iZCoordinate(aZCoordinate),
00057 iAzimuth(aAzimuth), iElevation(aElevation), iRadius(aRadius) {}
00058
00059
00060
00061 TInt32 iXCoordinate;
00062 TInt32 iYCoordinate;
00063 TInt32 iZCoordinate;
00064 TInt32 iAzimuth;
00065 TInt32 iElevation;
00066 TInt32 iRadius;
00067
00068 };
00069
00070 typedef TPckgBuf<TEfLocation> TEfLocationDataPckg;
00071
00072 #endif // TEFLOCATION_H
00073
00074