File indexing completed on 2024-05-12 16:09:03

0001 class pyqtSignal():
0002  def connect(self, targetSignal): pass
0003  def emit(self, *args): pass
0004 from QtCore import *
0005 
0006 from QtWidgets import *
0007 
0008 import datetime
0009 
0010 class QGeoCodeReply(QObject):
0011     """"""
0012     # Enum QGeoCodeReply.Error
0013     NoError = 0
0014     EngineNotSetError = 0
0015     CommunicationError = 0
0016     ParseError = 0
0017     UnsupportedOptionError = 0
0018     CombinationError = 0
0019     UnknownError = 0
0020 
0021     def __init__(self, error, errorString, parent = None):
0022         '''void QGeoCodeReply.__init__(QGeoCodeReply.Error error, str errorString, QObject parent = None)'''
0023     def __init__(self, parent = None):
0024         '''void QGeoCodeReply.__init__(QObject parent = None)'''
0025     def setOffset(self, offset):
0026         '''void QGeoCodeReply.setOffset(int offset)'''
0027     def setLimit(self, limit):
0028         '''void QGeoCodeReply.setLimit(int limit)'''
0029     def setLocations(self, locations):
0030         '''void QGeoCodeReply.setLocations(list-of-QGeoLocation locations)'''
0031     def addLocation(self, location):
0032         '''void QGeoCodeReply.addLocation(QGeoLocation location)'''
0033     def setViewport(self, viewport):
0034         '''void QGeoCodeReply.setViewport(QGeoShape viewport)'''
0035     def setFinished(self, finished):
0036         '''void QGeoCodeReply.setFinished(bool finished)'''
0037     def setError(self, error, errorString):
0038         '''void QGeoCodeReply.setError(QGeoCodeReply.Error error, str errorString)'''
0039     finished = pyqtSignal() # void finished() - signal
0040     def abort(self):
0041         '''void QGeoCodeReply.abort()'''
0042     def offset(self):
0043         '''int QGeoCodeReply.offset()'''
0044         return int()
0045     def limit(self):
0046         '''int QGeoCodeReply.limit()'''
0047         return int()
0048     def locations(self):
0049         '''list-of-QGeoLocation QGeoCodeReply.locations()'''
0050         return [QGeoLocation()]
0051     def viewport(self):
0052         '''QGeoShape QGeoCodeReply.viewport()'''
0053         return QGeoShape()
0054     def errorString(self):
0055         '''str QGeoCodeReply.errorString()'''
0056         return str()
0057     def error(self):
0058         '''QGeoCodeReply.Error QGeoCodeReply.error()'''
0059         return QGeoCodeReply.Error()
0060     error = pyqtSignal() # void error(QGeoCodeReply::Error,const QStringamp; = QString()) - signal
0061     def isFinished(self):
0062         '''bool QGeoCodeReply.isFinished()'''
0063         return bool()
0064 
0065 
0066 class QGeoCodingManager(QObject):
0067     """"""
0068     error = pyqtSignal() # void error(QGeoCodeReply*,QGeoCodeReply::Error,QString = QString()) - signal
0069     finished = pyqtSignal() # void finished(QGeoCodeReply*) - signal
0070     def locale(self):
0071         '''QLocale QGeoCodingManager.locale()'''
0072         return QLocale()
0073     def setLocale(self, locale):
0074         '''void QGeoCodingManager.setLocale(QLocale locale)'''
0075     def reverseGeocode(self, coordinate, bounds = QGeoShape()):
0076         '''QGeoCodeReply QGeoCodingManager.reverseGeocode(QGeoCoordinate coordinate, QGeoShape bounds = QGeoShape())'''
0077         return QGeoCodeReply()
0078     def geocode(self, address, bounds = QGeoShape()):
0079         '''QGeoCodeReply QGeoCodingManager.geocode(QGeoAddress address, QGeoShape bounds = QGeoShape())'''
0080         return QGeoCodeReply()
0081     def geocode(self, searchString, limit = None, offset = 0, bounds = QGeoShape()):
0082         '''QGeoCodeReply QGeoCodingManager.geocode(str searchString, int limit = -1, int offset = 0, QGeoShape bounds = QGeoShape())'''
0083         return QGeoCodeReply()
0084     def managerVersion(self):
0085         '''int QGeoCodingManager.managerVersion()'''
0086         return int()
0087     def managerName(self):
0088         '''str QGeoCodingManager.managerName()'''
0089         return str()
0090 
0091 
0092 class QGeoCodingManagerEngine(QObject):
0093     """"""
0094     def __init__(self, parameters, parent = None):
0095         '''void QGeoCodingManagerEngine.__init__(dict-of-str-object parameters, QObject parent = None)'''
0096     error = pyqtSignal() # void error(QGeoCodeReply*,QGeoCodeReply::Error,QString = QString()) - signal
0097     finished = pyqtSignal() # void finished(QGeoCodeReply*) - signal
0098     def locale(self):
0099         '''QLocale QGeoCodingManagerEngine.locale()'''
0100         return QLocale()
0101     def setLocale(self, locale):
0102         '''void QGeoCodingManagerEngine.setLocale(QLocale locale)'''
0103     def reverseGeocode(self, coordinate, bounds):
0104         '''QGeoCodeReply QGeoCodingManagerEngine.reverseGeocode(QGeoCoordinate coordinate, QGeoShape bounds)'''
0105         return QGeoCodeReply()
0106     def geocode(self, address, bounds):
0107         '''QGeoCodeReply QGeoCodingManagerEngine.geocode(QGeoAddress address, QGeoShape bounds)'''
0108         return QGeoCodeReply()
0109     def geocode(self, address, limit, offset, bounds):
0110         '''QGeoCodeReply QGeoCodingManagerEngine.geocode(str address, int limit, int offset, QGeoShape bounds)'''
0111         return QGeoCodeReply()
0112     def managerVersion(self):
0113         '''int QGeoCodingManagerEngine.managerVersion()'''
0114         return int()
0115     def managerName(self):
0116         '''str QGeoCodingManagerEngine.managerName()'''
0117         return str()
0118 
0119 
0120 class QGeoManeuver():
0121     """"""
0122     # Enum QGeoManeuver.InstructionDirection
0123     NoDirection = 0
0124     DirectionForward = 0
0125     DirectionBearRight = 0
0126     DirectionLightRight = 0
0127     DirectionRight = 0
0128     DirectionHardRight = 0
0129     DirectionUTurnRight = 0
0130     DirectionUTurnLeft = 0
0131     DirectionHardLeft = 0
0132     DirectionLeft = 0
0133     DirectionLightLeft = 0
0134     DirectionBearLeft = 0
0135 
0136     def __init__(self):
0137         '''void QGeoManeuver.__init__()'''
0138     def __init__(self, other):
0139         '''void QGeoManeuver.__init__(QGeoManeuver other)'''
0140     def waypoint(self):
0141         '''QGeoCoordinate QGeoManeuver.waypoint()'''
0142         return QGeoCoordinate()
0143     def setWaypoint(self, coordinate):
0144         '''void QGeoManeuver.setWaypoint(QGeoCoordinate coordinate)'''
0145     def distanceToNextInstruction(self):
0146         '''float QGeoManeuver.distanceToNextInstruction()'''
0147         return float()
0148     def setDistanceToNextInstruction(self, distance):
0149         '''void QGeoManeuver.setDistanceToNextInstruction(float distance)'''
0150     def timeToNextInstruction(self):
0151         '''int QGeoManeuver.timeToNextInstruction()'''
0152         return int()
0153     def setTimeToNextInstruction(self, secs):
0154         '''void QGeoManeuver.setTimeToNextInstruction(int secs)'''
0155     def direction(self):
0156         '''QGeoManeuver.InstructionDirection QGeoManeuver.direction()'''
0157         return QGeoManeuver.InstructionDirection()
0158     def setDirection(self, direction):
0159         '''void QGeoManeuver.setDirection(QGeoManeuver.InstructionDirection direction)'''
0160     def instructionText(self):
0161         '''str QGeoManeuver.instructionText()'''
0162         return str()
0163     def setInstructionText(self, instructionText):
0164         '''void QGeoManeuver.setInstructionText(str instructionText)'''
0165     def position(self):
0166         '''QGeoCoordinate QGeoManeuver.position()'''
0167         return QGeoCoordinate()
0168     def setPosition(self, position):
0169         '''void QGeoManeuver.setPosition(QGeoCoordinate position)'''
0170     def isValid(self):
0171         '''bool QGeoManeuver.isValid()'''
0172         return bool()
0173     def __ne__(self, other):
0174         '''bool QGeoManeuver.__ne__(QGeoManeuver other)'''
0175         return bool()
0176     def __eq__(self, other):
0177         '''bool QGeoManeuver.__eq__(QGeoManeuver other)'''
0178         return bool()
0179 
0180 
0181 class QGeoRoute():
0182     """"""
0183     def __init__(self):
0184         '''void QGeoRoute.__init__()'''
0185     def __init__(self, other):
0186         '''void QGeoRoute.__init__(QGeoRoute other)'''
0187     def path(self):
0188         '''list-of-QGeoCoordinate QGeoRoute.path()'''
0189         return [QGeoCoordinate()]
0190     def setPath(self, path):
0191         '''void QGeoRoute.setPath(list-of-QGeoCoordinate path)'''
0192     def travelMode(self):
0193         '''QGeoRouteRequest.TravelMode QGeoRoute.travelMode()'''
0194         return QGeoRouteRequest.TravelMode()
0195     def setTravelMode(self, mode):
0196         '''void QGeoRoute.setTravelMode(QGeoRouteRequest.TravelMode mode)'''
0197     def distance(self):
0198         '''float QGeoRoute.distance()'''
0199         return float()
0200     def setDistance(self, distance):
0201         '''void QGeoRoute.setDistance(float distance)'''
0202     def travelTime(self):
0203         '''int QGeoRoute.travelTime()'''
0204         return int()
0205     def setTravelTime(self, secs):
0206         '''void QGeoRoute.setTravelTime(int secs)'''
0207     def firstRouteSegment(self):
0208         '''QGeoRouteSegment QGeoRoute.firstRouteSegment()'''
0209         return QGeoRouteSegment()
0210     def setFirstRouteSegment(self, routeSegment):
0211         '''void QGeoRoute.setFirstRouteSegment(QGeoRouteSegment routeSegment)'''
0212     def bounds(self):
0213         '''QGeoRectangle QGeoRoute.bounds()'''
0214         return QGeoRectangle()
0215     def setBounds(self, bounds):
0216         '''void QGeoRoute.setBounds(QGeoRectangle bounds)'''
0217     def request(self):
0218         '''QGeoRouteRequest QGeoRoute.request()'''
0219         return QGeoRouteRequest()
0220     def setRequest(self, request):
0221         '''void QGeoRoute.setRequest(QGeoRouteRequest request)'''
0222     def routeId(self):
0223         '''str QGeoRoute.routeId()'''
0224         return str()
0225     def setRouteId(self, id):
0226         '''void QGeoRoute.setRouteId(str id)'''
0227     def __ne__(self, other):
0228         '''bool QGeoRoute.__ne__(QGeoRoute other)'''
0229         return bool()
0230     def __eq__(self, other):
0231         '''bool QGeoRoute.__eq__(QGeoRoute other)'''
0232         return bool()
0233 
0234 
0235 class QGeoRouteReply(QObject):
0236     """"""
0237     # Enum QGeoRouteReply.Error
0238     NoError = 0
0239     EngineNotSetError = 0
0240     CommunicationError = 0
0241     ParseError = 0
0242     UnsupportedOptionError = 0
0243     UnknownError = 0
0244 
0245     def __init__(self, error, errorString, parent = None):
0246         '''void QGeoRouteReply.__init__(QGeoRouteReply.Error error, str errorString, QObject parent = None)'''
0247     def __init__(self, request, parent = None):
0248         '''void QGeoRouteReply.__init__(QGeoRouteRequest request, QObject parent = None)'''
0249     def addRoutes(self, routes):
0250         '''void QGeoRouteReply.addRoutes(list-of-QGeoRoute routes)'''
0251     def setRoutes(self, routes):
0252         '''void QGeoRouteReply.setRoutes(list-of-QGeoRoute routes)'''
0253     def setFinished(self, finished):
0254         '''void QGeoRouteReply.setFinished(bool finished)'''
0255     def setError(self, error, errorString):
0256         '''void QGeoRouteReply.setError(QGeoRouteReply.Error error, str errorString)'''
0257     finished = pyqtSignal() # void finished() - signal
0258     def abort(self):
0259         '''void QGeoRouteReply.abort()'''
0260     def routes(self):
0261         '''list-of-QGeoRoute QGeoRouteReply.routes()'''
0262         return [QGeoRoute()]
0263     def request(self):
0264         '''QGeoRouteRequest QGeoRouteReply.request()'''
0265         return QGeoRouteRequest()
0266     def errorString(self):
0267         '''str QGeoRouteReply.errorString()'''
0268         return str()
0269     def error(self):
0270         '''QGeoRouteReply.Error QGeoRouteReply.error()'''
0271         return QGeoRouteReply.Error()
0272     error = pyqtSignal() # void error(QGeoRouteReply::Error,const QStringamp; = QString()) - signal
0273     def isFinished(self):
0274         '''bool QGeoRouteReply.isFinished()'''
0275         return bool()
0276 
0277 
0278 class QGeoRouteRequest():
0279     """"""
0280     # Enum QGeoRouteRequest.ManeuverDetail
0281     NoManeuvers = 0
0282     BasicManeuvers = 0
0283 
0284     # Enum QGeoRouteRequest.SegmentDetail
0285     NoSegmentData = 0
0286     BasicSegmentData = 0
0287 
0288     # Enum QGeoRouteRequest.RouteOptimization
0289     ShortestRoute = 0
0290     FastestRoute = 0
0291     MostEconomicRoute = 0
0292     MostScenicRoute = 0
0293 
0294     # Enum QGeoRouteRequest.FeatureWeight
0295     NeutralFeatureWeight = 0
0296     PreferFeatureWeight = 0
0297     RequireFeatureWeight = 0
0298     AvoidFeatureWeight = 0
0299     DisallowFeatureWeight = 0
0300 
0301     # Enum QGeoRouteRequest.FeatureType
0302     NoFeature = 0
0303     TollFeature = 0
0304     HighwayFeature = 0
0305     PublicTransitFeature = 0
0306     FerryFeature = 0
0307     TunnelFeature = 0
0308     DirtRoadFeature = 0
0309     ParksFeature = 0
0310     MotorPoolLaneFeature = 0
0311 
0312     # Enum QGeoRouteRequest.TravelMode
0313     CarTravel = 0
0314     PedestrianTravel = 0
0315     BicycleTravel = 0
0316     PublicTransitTravel = 0
0317     TruckTravel = 0
0318 
0319     def __init__(self, waypoints = None):
0320         '''void QGeoRouteRequest.__init__(list-of-QGeoCoordinate waypoints = QListlt;QGeoCoordinategt;())'''
0321     def __init__(self, origin, destination):
0322         '''void QGeoRouteRequest.__init__(QGeoCoordinate origin, QGeoCoordinate destination)'''
0323     def __init__(self, other):
0324         '''void QGeoRouteRequest.__init__(QGeoRouteRequest other)'''
0325     def maneuverDetail(self):
0326         '''QGeoRouteRequest.ManeuverDetail QGeoRouteRequest.maneuverDetail()'''
0327         return QGeoRouteRequest.ManeuverDetail()
0328     def setManeuverDetail(self, maneuverDetail):
0329         '''void QGeoRouteRequest.setManeuverDetail(QGeoRouteRequest.ManeuverDetail maneuverDetail)'''
0330     def segmentDetail(self):
0331         '''QGeoRouteRequest.SegmentDetail QGeoRouteRequest.segmentDetail()'''
0332         return QGeoRouteRequest.SegmentDetail()
0333     def setSegmentDetail(self, segmentDetail):
0334         '''void QGeoRouteRequest.setSegmentDetail(QGeoRouteRequest.SegmentDetail segmentDetail)'''
0335     def routeOptimization(self):
0336         '''QGeoRouteRequest.RouteOptimizations QGeoRouteRequest.routeOptimization()'''
0337         return QGeoRouteRequest.RouteOptimizations()
0338     def setRouteOptimization(self, optimization):
0339         '''void QGeoRouteRequest.setRouteOptimization(QGeoRouteRequest.RouteOptimizations optimization)'''
0340     def featureTypes(self):
0341         '''list-of-QGeoRouteRequest.FeatureType QGeoRouteRequest.featureTypes()'''
0342         return [QGeoRouteRequest.FeatureType()]
0343     def featureWeight(self, featureType):
0344         '''QGeoRouteRequest.FeatureWeight QGeoRouteRequest.featureWeight(QGeoRouteRequest.FeatureType featureType)'''
0345         return QGeoRouteRequest.FeatureWeight()
0346     def setFeatureWeight(self, featureType, featureWeight):
0347         '''void QGeoRouteRequest.setFeatureWeight(QGeoRouteRequest.FeatureType featureType, QGeoRouteRequest.FeatureWeight featureWeight)'''
0348     def travelModes(self):
0349         '''QGeoRouteRequest.TravelModes QGeoRouteRequest.travelModes()'''
0350         return QGeoRouteRequest.TravelModes()
0351     def setTravelModes(self, travelModes):
0352         '''void QGeoRouteRequest.setTravelModes(QGeoRouteRequest.TravelModes travelModes)'''
0353     def numberAlternativeRoutes(self):
0354         '''int QGeoRouteRequest.numberAlternativeRoutes()'''
0355         return int()
0356     def setNumberAlternativeRoutes(self, alternatives):
0357         '''void QGeoRouteRequest.setNumberAlternativeRoutes(int alternatives)'''
0358     def excludeAreas(self):
0359         '''list-of-QGeoRectangle QGeoRouteRequest.excludeAreas()'''
0360         return [QGeoRectangle()]
0361     def setExcludeAreas(self, areas):
0362         '''void QGeoRouteRequest.setExcludeAreas(list-of-QGeoRectangle areas)'''
0363     def waypoints(self):
0364         '''list-of-QGeoCoordinate QGeoRouteRequest.waypoints()'''
0365         return [QGeoCoordinate()]
0366     def setWaypoints(self, waypoints):
0367         '''void QGeoRouteRequest.setWaypoints(list-of-QGeoCoordinate waypoints)'''
0368     def __ne__(self, other):
0369         '''bool QGeoRouteRequest.__ne__(QGeoRouteRequest other)'''
0370         return bool()
0371     def __eq__(self, other):
0372         '''bool QGeoRouteRequest.__eq__(QGeoRouteRequest other)'''
0373         return bool()
0374     class ManeuverDetails():
0375         """"""
0376         def __init__(self):
0377             '''QGeoRouteRequest.ManeuverDetails QGeoRouteRequest.ManeuverDetails.__init__()'''
0378             return QGeoRouteRequest.ManeuverDetails()
0379         def __init__(self):
0380             '''int QGeoRouteRequest.ManeuverDetails.__init__()'''
0381             return int()
0382         def __init__(self):
0383             '''void QGeoRouteRequest.ManeuverDetails.__init__()'''
0384         def __bool__(self):
0385             '''int QGeoRouteRequest.ManeuverDetails.__bool__()'''
0386             return int()
0387         def __ne__(self, f):
0388             '''bool QGeoRouteRequest.ManeuverDetails.__ne__(QGeoRouteRequest.ManeuverDetails f)'''
0389             return bool()
0390         def __eq__(self, f):
0391             '''bool QGeoRouteRequest.ManeuverDetails.__eq__(QGeoRouteRequest.ManeuverDetails f)'''
0392             return bool()
0393         def __invert__(self):
0394             '''QGeoRouteRequest.ManeuverDetails QGeoRouteRequest.ManeuverDetails.__invert__()'''
0395             return QGeoRouteRequest.ManeuverDetails()
0396         def __and__(self, mask):
0397             '''QGeoRouteRequest.ManeuverDetails QGeoRouteRequest.ManeuverDetails.__and__(int mask)'''
0398             return QGeoRouteRequest.ManeuverDetails()
0399         def __xor__(self, f):
0400             '''QGeoRouteRequest.ManeuverDetails QGeoRouteRequest.ManeuverDetails.__xor__(QGeoRouteRequest.ManeuverDetails f)'''
0401             return QGeoRouteRequest.ManeuverDetails()
0402         def __xor__(self, f):
0403             '''QGeoRouteRequest.ManeuverDetails QGeoRouteRequest.ManeuverDetails.__xor__(int f)'''
0404             return QGeoRouteRequest.ManeuverDetails()
0405         def __or__(self, f):
0406             '''QGeoRouteRequest.ManeuverDetails QGeoRouteRequest.ManeuverDetails.__or__(QGeoRouteRequest.ManeuverDetails f)'''
0407             return QGeoRouteRequest.ManeuverDetails()
0408         def __or__(self, f):
0409             '''QGeoRouteRequest.ManeuverDetails QGeoRouteRequest.ManeuverDetails.__or__(int f)'''
0410             return QGeoRouteRequest.ManeuverDetails()
0411         def __int__(self):
0412             '''int QGeoRouteRequest.ManeuverDetails.__int__()'''
0413             return int()
0414         def __ixor__(self, f):
0415             '''QGeoRouteRequest.ManeuverDetails QGeoRouteRequest.ManeuverDetails.__ixor__(QGeoRouteRequest.ManeuverDetails f)'''
0416             return QGeoRouteRequest.ManeuverDetails()
0417         def __ior__(self, f):
0418             '''QGeoRouteRequest.ManeuverDetails QGeoRouteRequest.ManeuverDetails.__ior__(QGeoRouteRequest.ManeuverDetails f)'''
0419             return QGeoRouteRequest.ManeuverDetails()
0420         def __iand__(self, mask):
0421             '''QGeoRouteRequest.ManeuverDetails QGeoRouteRequest.ManeuverDetails.__iand__(int mask)'''
0422             return QGeoRouteRequest.ManeuverDetails()
0423     class RouteOptimizations():
0424         """"""
0425         def __init__(self):
0426             '''QGeoRouteRequest.RouteOptimizations QGeoRouteRequest.RouteOptimizations.__init__()'''
0427             return QGeoRouteRequest.RouteOptimizations()
0428         def __init__(self):
0429             '''int QGeoRouteRequest.RouteOptimizations.__init__()'''
0430             return int()
0431         def __init__(self):
0432             '''void QGeoRouteRequest.RouteOptimizations.__init__()'''
0433         def __bool__(self):
0434             '''int QGeoRouteRequest.RouteOptimizations.__bool__()'''
0435             return int()
0436         def __ne__(self, f):
0437             '''bool QGeoRouteRequest.RouteOptimizations.__ne__(QGeoRouteRequest.RouteOptimizations f)'''
0438             return bool()
0439         def __eq__(self, f):
0440             '''bool QGeoRouteRequest.RouteOptimizations.__eq__(QGeoRouteRequest.RouteOptimizations f)'''
0441             return bool()
0442         def __invert__(self):
0443             '''QGeoRouteRequest.RouteOptimizations QGeoRouteRequest.RouteOptimizations.__invert__()'''
0444             return QGeoRouteRequest.RouteOptimizations()
0445         def __and__(self, mask):
0446             '''QGeoRouteRequest.RouteOptimizations QGeoRouteRequest.RouteOptimizations.__and__(int mask)'''
0447             return QGeoRouteRequest.RouteOptimizations()
0448         def __xor__(self, f):
0449             '''QGeoRouteRequest.RouteOptimizations QGeoRouteRequest.RouteOptimizations.__xor__(QGeoRouteRequest.RouteOptimizations f)'''
0450             return QGeoRouteRequest.RouteOptimizations()
0451         def __xor__(self, f):
0452             '''QGeoRouteRequest.RouteOptimizations QGeoRouteRequest.RouteOptimizations.__xor__(int f)'''
0453             return QGeoRouteRequest.RouteOptimizations()
0454         def __or__(self, f):
0455             '''QGeoRouteRequest.RouteOptimizations QGeoRouteRequest.RouteOptimizations.__or__(QGeoRouteRequest.RouteOptimizations f)'''
0456             return QGeoRouteRequest.RouteOptimizations()
0457         def __or__(self, f):
0458             '''QGeoRouteRequest.RouteOptimizations QGeoRouteRequest.RouteOptimizations.__or__(int f)'''
0459             return QGeoRouteRequest.RouteOptimizations()
0460         def __int__(self):
0461             '''int QGeoRouteRequest.RouteOptimizations.__int__()'''
0462             return int()
0463         def __ixor__(self, f):
0464             '''QGeoRouteRequest.RouteOptimizations QGeoRouteRequest.RouteOptimizations.__ixor__(QGeoRouteRequest.RouteOptimizations f)'''
0465             return QGeoRouteRequest.RouteOptimizations()
0466         def __ior__(self, f):
0467             '''QGeoRouteRequest.RouteOptimizations QGeoRouteRequest.RouteOptimizations.__ior__(QGeoRouteRequest.RouteOptimizations f)'''
0468             return QGeoRouteRequest.RouteOptimizations()
0469         def __iand__(self, mask):
0470             '''QGeoRouteRequest.RouteOptimizations QGeoRouteRequest.RouteOptimizations.__iand__(int mask)'''
0471             return QGeoRouteRequest.RouteOptimizations()
0472     class FeatureTypes():
0473         """"""
0474         def __init__(self):
0475             '''QGeoRouteRequest.FeatureTypes QGeoRouteRequest.FeatureTypes.__init__()'''
0476             return QGeoRouteRequest.FeatureTypes()
0477         def __init__(self):
0478             '''int QGeoRouteRequest.FeatureTypes.__init__()'''
0479             return int()
0480         def __init__(self):
0481             '''void QGeoRouteRequest.FeatureTypes.__init__()'''
0482         def __bool__(self):
0483             '''int QGeoRouteRequest.FeatureTypes.__bool__()'''
0484             return int()
0485         def __ne__(self, f):
0486             '''bool QGeoRouteRequest.FeatureTypes.__ne__(QGeoRouteRequest.FeatureTypes f)'''
0487             return bool()
0488         def __eq__(self, f):
0489             '''bool QGeoRouteRequest.FeatureTypes.__eq__(QGeoRouteRequest.FeatureTypes f)'''
0490             return bool()
0491         def __invert__(self):
0492             '''QGeoRouteRequest.FeatureTypes QGeoRouteRequest.FeatureTypes.__invert__()'''
0493             return QGeoRouteRequest.FeatureTypes()
0494         def __and__(self, mask):
0495             '''QGeoRouteRequest.FeatureTypes QGeoRouteRequest.FeatureTypes.__and__(int mask)'''
0496             return QGeoRouteRequest.FeatureTypes()
0497         def __xor__(self, f):
0498             '''QGeoRouteRequest.FeatureTypes QGeoRouteRequest.FeatureTypes.__xor__(QGeoRouteRequest.FeatureTypes f)'''
0499             return QGeoRouteRequest.FeatureTypes()
0500         def __xor__(self, f):
0501             '''QGeoRouteRequest.FeatureTypes QGeoRouteRequest.FeatureTypes.__xor__(int f)'''
0502             return QGeoRouteRequest.FeatureTypes()
0503         def __or__(self, f):
0504             '''QGeoRouteRequest.FeatureTypes QGeoRouteRequest.FeatureTypes.__or__(QGeoRouteRequest.FeatureTypes f)'''
0505             return QGeoRouteRequest.FeatureTypes()
0506         def __or__(self, f):
0507             '''QGeoRouteRequest.FeatureTypes QGeoRouteRequest.FeatureTypes.__or__(int f)'''
0508             return QGeoRouteRequest.FeatureTypes()
0509         def __int__(self):
0510             '''int QGeoRouteRequest.FeatureTypes.__int__()'''
0511             return int()
0512         def __ixor__(self, f):
0513             '''QGeoRouteRequest.FeatureTypes QGeoRouteRequest.FeatureTypes.__ixor__(QGeoRouteRequest.FeatureTypes f)'''
0514             return QGeoRouteRequest.FeatureTypes()
0515         def __ior__(self, f):
0516             '''QGeoRouteRequest.FeatureTypes QGeoRouteRequest.FeatureTypes.__ior__(QGeoRouteRequest.FeatureTypes f)'''
0517             return QGeoRouteRequest.FeatureTypes()
0518         def __iand__(self, mask):
0519             '''QGeoRouteRequest.FeatureTypes QGeoRouteRequest.FeatureTypes.__iand__(int mask)'''
0520             return QGeoRouteRequest.FeatureTypes()
0521     class TravelModes():
0522         """"""
0523         def __init__(self):
0524             '''QGeoRouteRequest.TravelModes QGeoRouteRequest.TravelModes.__init__()'''
0525             return QGeoRouteRequest.TravelModes()
0526         def __init__(self):
0527             '''int QGeoRouteRequest.TravelModes.__init__()'''
0528             return int()
0529         def __init__(self):
0530             '''void QGeoRouteRequest.TravelModes.__init__()'''
0531         def __bool__(self):
0532             '''int QGeoRouteRequest.TravelModes.__bool__()'''
0533             return int()
0534         def __ne__(self, f):
0535             '''bool QGeoRouteRequest.TravelModes.__ne__(QGeoRouteRequest.TravelModes f)'''
0536             return bool()
0537         def __eq__(self, f):
0538             '''bool QGeoRouteRequest.TravelModes.__eq__(QGeoRouteRequest.TravelModes f)'''
0539             return bool()
0540         def __invert__(self):
0541             '''QGeoRouteRequest.TravelModes QGeoRouteRequest.TravelModes.__invert__()'''
0542             return QGeoRouteRequest.TravelModes()
0543         def __and__(self, mask):
0544             '''QGeoRouteRequest.TravelModes QGeoRouteRequest.TravelModes.__and__(int mask)'''
0545             return QGeoRouteRequest.TravelModes()
0546         def __xor__(self, f):
0547             '''QGeoRouteRequest.TravelModes QGeoRouteRequest.TravelModes.__xor__(QGeoRouteRequest.TravelModes f)'''
0548             return QGeoRouteRequest.TravelModes()
0549         def __xor__(self, f):
0550             '''QGeoRouteRequest.TravelModes QGeoRouteRequest.TravelModes.__xor__(int f)'''
0551             return QGeoRouteRequest.TravelModes()
0552         def __or__(self, f):
0553             '''QGeoRouteRequest.TravelModes QGeoRouteRequest.TravelModes.__or__(QGeoRouteRequest.TravelModes f)'''
0554             return QGeoRouteRequest.TravelModes()
0555         def __or__(self, f):
0556             '''QGeoRouteRequest.TravelModes QGeoRouteRequest.TravelModes.__or__(int f)'''
0557             return QGeoRouteRequest.TravelModes()
0558         def __int__(self):
0559             '''int QGeoRouteRequest.TravelModes.__int__()'''
0560             return int()
0561         def __ixor__(self, f):
0562             '''QGeoRouteRequest.TravelModes QGeoRouteRequest.TravelModes.__ixor__(QGeoRouteRequest.TravelModes f)'''
0563             return QGeoRouteRequest.TravelModes()
0564         def __ior__(self, f):
0565             '''QGeoRouteRequest.TravelModes QGeoRouteRequest.TravelModes.__ior__(QGeoRouteRequest.TravelModes f)'''
0566             return QGeoRouteRequest.TravelModes()
0567         def __iand__(self, mask):
0568             '''QGeoRouteRequest.TravelModes QGeoRouteRequest.TravelModes.__iand__(int mask)'''
0569             return QGeoRouteRequest.TravelModes()
0570     class FeatureWeights():
0571         """"""
0572         def __init__(self):
0573             '''QGeoRouteRequest.FeatureWeights QGeoRouteRequest.FeatureWeights.__init__()'''
0574             return QGeoRouteRequest.FeatureWeights()
0575         def __init__(self):
0576             '''int QGeoRouteRequest.FeatureWeights.__init__()'''
0577             return int()
0578         def __init__(self):
0579             '''void QGeoRouteRequest.FeatureWeights.__init__()'''
0580         def __bool__(self):
0581             '''int QGeoRouteRequest.FeatureWeights.__bool__()'''
0582             return int()
0583         def __ne__(self, f):
0584             '''bool QGeoRouteRequest.FeatureWeights.__ne__(QGeoRouteRequest.FeatureWeights f)'''
0585             return bool()
0586         def __eq__(self, f):
0587             '''bool QGeoRouteRequest.FeatureWeights.__eq__(QGeoRouteRequest.FeatureWeights f)'''
0588             return bool()
0589         def __invert__(self):
0590             '''QGeoRouteRequest.FeatureWeights QGeoRouteRequest.FeatureWeights.__invert__()'''
0591             return QGeoRouteRequest.FeatureWeights()
0592         def __and__(self, mask):
0593             '''QGeoRouteRequest.FeatureWeights QGeoRouteRequest.FeatureWeights.__and__(int mask)'''
0594             return QGeoRouteRequest.FeatureWeights()
0595         def __xor__(self, f):
0596             '''QGeoRouteRequest.FeatureWeights QGeoRouteRequest.FeatureWeights.__xor__(QGeoRouteRequest.FeatureWeights f)'''
0597             return QGeoRouteRequest.FeatureWeights()
0598         def __xor__(self, f):
0599             '''QGeoRouteRequest.FeatureWeights QGeoRouteRequest.FeatureWeights.__xor__(int f)'''
0600             return QGeoRouteRequest.FeatureWeights()
0601         def __or__(self, f):
0602             '''QGeoRouteRequest.FeatureWeights QGeoRouteRequest.FeatureWeights.__or__(QGeoRouteRequest.FeatureWeights f)'''
0603             return QGeoRouteRequest.FeatureWeights()
0604         def __or__(self, f):
0605             '''QGeoRouteRequest.FeatureWeights QGeoRouteRequest.FeatureWeights.__or__(int f)'''
0606             return QGeoRouteRequest.FeatureWeights()
0607         def __int__(self):
0608             '''int QGeoRouteRequest.FeatureWeights.__int__()'''
0609             return int()
0610         def __ixor__(self, f):
0611             '''QGeoRouteRequest.FeatureWeights QGeoRouteRequest.FeatureWeights.__ixor__(QGeoRouteRequest.FeatureWeights f)'''
0612             return QGeoRouteRequest.FeatureWeights()
0613         def __ior__(self, f):
0614             '''QGeoRouteRequest.FeatureWeights QGeoRouteRequest.FeatureWeights.__ior__(QGeoRouteRequest.FeatureWeights f)'''
0615             return QGeoRouteRequest.FeatureWeights()
0616         def __iand__(self, mask):
0617             '''QGeoRouteRequest.FeatureWeights QGeoRouteRequest.FeatureWeights.__iand__(int mask)'''
0618             return QGeoRouteRequest.FeatureWeights()
0619     class SegmentDetails():
0620         """"""
0621         def __init__(self):
0622             '''QGeoRouteRequest.SegmentDetails QGeoRouteRequest.SegmentDetails.__init__()'''
0623             return QGeoRouteRequest.SegmentDetails()
0624         def __init__(self):
0625             '''int QGeoRouteRequest.SegmentDetails.__init__()'''
0626             return int()
0627         def __init__(self):
0628             '''void QGeoRouteRequest.SegmentDetails.__init__()'''
0629         def __bool__(self):
0630             '''int QGeoRouteRequest.SegmentDetails.__bool__()'''
0631             return int()
0632         def __ne__(self, f):
0633             '''bool QGeoRouteRequest.SegmentDetails.__ne__(QGeoRouteRequest.SegmentDetails f)'''
0634             return bool()
0635         def __eq__(self, f):
0636             '''bool QGeoRouteRequest.SegmentDetails.__eq__(QGeoRouteRequest.SegmentDetails f)'''
0637             return bool()
0638         def __invert__(self):
0639             '''QGeoRouteRequest.SegmentDetails QGeoRouteRequest.SegmentDetails.__invert__()'''
0640             return QGeoRouteRequest.SegmentDetails()
0641         def __and__(self, mask):
0642             '''QGeoRouteRequest.SegmentDetails QGeoRouteRequest.SegmentDetails.__and__(int mask)'''
0643             return QGeoRouteRequest.SegmentDetails()
0644         def __xor__(self, f):
0645             '''QGeoRouteRequest.SegmentDetails QGeoRouteRequest.SegmentDetails.__xor__(QGeoRouteRequest.SegmentDetails f)'''
0646             return QGeoRouteRequest.SegmentDetails()
0647         def __xor__(self, f):
0648             '''QGeoRouteRequest.SegmentDetails QGeoRouteRequest.SegmentDetails.__xor__(int f)'''
0649             return QGeoRouteRequest.SegmentDetails()
0650         def __or__(self, f):
0651             '''QGeoRouteRequest.SegmentDetails QGeoRouteRequest.SegmentDetails.__or__(QGeoRouteRequest.SegmentDetails f)'''
0652             return QGeoRouteRequest.SegmentDetails()
0653         def __or__(self, f):
0654             '''QGeoRouteRequest.SegmentDetails QGeoRouteRequest.SegmentDetails.__or__(int f)'''
0655             return QGeoRouteRequest.SegmentDetails()
0656         def __int__(self):
0657             '''int QGeoRouteRequest.SegmentDetails.__int__()'''
0658             return int()
0659         def __ixor__(self, f):
0660             '''QGeoRouteRequest.SegmentDetails QGeoRouteRequest.SegmentDetails.__ixor__(QGeoRouteRequest.SegmentDetails f)'''
0661             return QGeoRouteRequest.SegmentDetails()
0662         def __ior__(self, f):
0663             '''QGeoRouteRequest.SegmentDetails QGeoRouteRequest.SegmentDetails.__ior__(QGeoRouteRequest.SegmentDetails f)'''
0664             return QGeoRouteRequest.SegmentDetails()
0665         def __iand__(self, mask):
0666             '''QGeoRouteRequest.SegmentDetails QGeoRouteRequest.SegmentDetails.__iand__(int mask)'''
0667             return QGeoRouteRequest.SegmentDetails()
0668 
0669 
0670 class QGeoRouteSegment():
0671     """"""
0672     def __init__(self):
0673         '''void QGeoRouteSegment.__init__()'''
0674     def __init__(self, other):
0675         '''void QGeoRouteSegment.__init__(QGeoRouteSegment other)'''
0676     def maneuver(self):
0677         '''QGeoManeuver QGeoRouteSegment.maneuver()'''
0678         return QGeoManeuver()
0679     def setManeuver(self, maneuver):
0680         '''void QGeoRouteSegment.setManeuver(QGeoManeuver maneuver)'''
0681     def path(self):
0682         '''list-of-QGeoCoordinate QGeoRouteSegment.path()'''
0683         return [QGeoCoordinate()]
0684     def setPath(self, path):
0685         '''void QGeoRouteSegment.setPath(list-of-QGeoCoordinate path)'''
0686     def distance(self):
0687         '''float QGeoRouteSegment.distance()'''
0688         return float()
0689     def setDistance(self, distance):
0690         '''void QGeoRouteSegment.setDistance(float distance)'''
0691     def travelTime(self):
0692         '''int QGeoRouteSegment.travelTime()'''
0693         return int()
0694     def setTravelTime(self, secs):
0695         '''void QGeoRouteSegment.setTravelTime(int secs)'''
0696     def nextRouteSegment(self):
0697         '''QGeoRouteSegment QGeoRouteSegment.nextRouteSegment()'''
0698         return QGeoRouteSegment()
0699     def setNextRouteSegment(self, routeSegment):
0700         '''void QGeoRouteSegment.setNextRouteSegment(QGeoRouteSegment routeSegment)'''
0701     def isValid(self):
0702         '''bool QGeoRouteSegment.isValid()'''
0703         return bool()
0704     def __ne__(self, other):
0705         '''bool QGeoRouteSegment.__ne__(QGeoRouteSegment other)'''
0706         return bool()
0707     def __eq__(self, other):
0708         '''bool QGeoRouteSegment.__eq__(QGeoRouteSegment other)'''
0709         return bool()
0710 
0711 
0712 class QGeoRoutingManager(QObject):
0713     """"""
0714     error = pyqtSignal() # void error(QGeoRouteReply*,QGeoRouteReply::Error,QString = QString()) - signal
0715     finished = pyqtSignal() # void finished(QGeoRouteReply*) - signal
0716     def measurementSystem(self):
0717         '''QLocale.MeasurementSystem QGeoRoutingManager.measurementSystem()'''
0718         return QLocale.MeasurementSystem()
0719     def setMeasurementSystem(self, system):
0720         '''void QGeoRoutingManager.setMeasurementSystem(QLocale.MeasurementSystem system)'''
0721     def locale(self):
0722         '''QLocale QGeoRoutingManager.locale()'''
0723         return QLocale()
0724     def setLocale(self, locale):
0725         '''void QGeoRoutingManager.setLocale(QLocale locale)'''
0726     def supportedManeuverDetails(self):
0727         '''QGeoRouteRequest.ManeuverDetails QGeoRoutingManager.supportedManeuverDetails()'''
0728         return QGeoRouteRequest.ManeuverDetails()
0729     def supportedSegmentDetails(self):
0730         '''QGeoRouteRequest.SegmentDetails QGeoRoutingManager.supportedSegmentDetails()'''
0731         return QGeoRouteRequest.SegmentDetails()
0732     def supportedRouteOptimizations(self):
0733         '''QGeoRouteRequest.RouteOptimizations QGeoRoutingManager.supportedRouteOptimizations()'''
0734         return QGeoRouteRequest.RouteOptimizations()
0735     def supportedFeatureWeights(self):
0736         '''QGeoRouteRequest.FeatureWeights QGeoRoutingManager.supportedFeatureWeights()'''
0737         return QGeoRouteRequest.FeatureWeights()
0738     def supportedFeatureTypes(self):
0739         '''QGeoRouteRequest.FeatureTypes QGeoRoutingManager.supportedFeatureTypes()'''
0740         return QGeoRouteRequest.FeatureTypes()
0741     def supportedTravelModes(self):
0742         '''QGeoRouteRequest.TravelModes QGeoRoutingManager.supportedTravelModes()'''
0743         return QGeoRouteRequest.TravelModes()
0744     def updateRoute(self, route, position):
0745         '''QGeoRouteReply QGeoRoutingManager.updateRoute(QGeoRoute route, QGeoCoordinate position)'''
0746         return QGeoRouteReply()
0747     def calculateRoute(self, request):
0748         '''QGeoRouteReply QGeoRoutingManager.calculateRoute(QGeoRouteRequest request)'''
0749         return QGeoRouteReply()
0750     def managerVersion(self):
0751         '''int QGeoRoutingManager.managerVersion()'''
0752         return int()
0753     def managerName(self):
0754         '''str QGeoRoutingManager.managerName()'''
0755         return str()
0756 
0757 
0758 class QGeoRoutingManagerEngine(QObject):
0759     """"""
0760     def __init__(self, parameters, parent = None):
0761         '''void QGeoRoutingManagerEngine.__init__(dict-of-str-object parameters, QObject parent = None)'''
0762     def setSupportedManeuverDetails(self, maneuverDetails):
0763         '''void QGeoRoutingManagerEngine.setSupportedManeuverDetails(QGeoRouteRequest.ManeuverDetails maneuverDetails)'''
0764     def setSupportedSegmentDetails(self, segmentDetails):
0765         '''void QGeoRoutingManagerEngine.setSupportedSegmentDetails(QGeoRouteRequest.SegmentDetails segmentDetails)'''
0766     def setSupportedRouteOptimizations(self, optimizations):
0767         '''void QGeoRoutingManagerEngine.setSupportedRouteOptimizations(QGeoRouteRequest.RouteOptimizations optimizations)'''
0768     def setSupportedFeatureWeights(self, featureWeights):
0769         '''void QGeoRoutingManagerEngine.setSupportedFeatureWeights(QGeoRouteRequest.FeatureWeights featureWeights)'''
0770     def setSupportedFeatureTypes(self, featureTypes):
0771         '''void QGeoRoutingManagerEngine.setSupportedFeatureTypes(QGeoRouteRequest.FeatureTypes featureTypes)'''
0772     def setSupportedTravelModes(self, travelModes):
0773         '''void QGeoRoutingManagerEngine.setSupportedTravelModes(QGeoRouteRequest.TravelModes travelModes)'''
0774     error = pyqtSignal() # void error(QGeoRouteReply*,QGeoRouteReply::Error,QString = QString()) - signal
0775     finished = pyqtSignal() # void finished(QGeoRouteReply*) - signal
0776     def measurementSystem(self):
0777         '''QLocale.MeasurementSystem QGeoRoutingManagerEngine.measurementSystem()'''
0778         return QLocale.MeasurementSystem()
0779     def setMeasurementSystem(self, system):
0780         '''void QGeoRoutingManagerEngine.setMeasurementSystem(QLocale.MeasurementSystem system)'''
0781     def locale(self):
0782         '''QLocale QGeoRoutingManagerEngine.locale()'''
0783         return QLocale()
0784     def setLocale(self, locale):
0785         '''void QGeoRoutingManagerEngine.setLocale(QLocale locale)'''
0786     def supportedManeuverDetails(self):
0787         '''QGeoRouteRequest.ManeuverDetails QGeoRoutingManagerEngine.supportedManeuverDetails()'''
0788         return QGeoRouteRequest.ManeuverDetails()
0789     def supportedSegmentDetails(self):
0790         '''QGeoRouteRequest.SegmentDetails QGeoRoutingManagerEngine.supportedSegmentDetails()'''
0791         return QGeoRouteRequest.SegmentDetails()
0792     def supportedRouteOptimizations(self):
0793         '''QGeoRouteRequest.RouteOptimizations QGeoRoutingManagerEngine.supportedRouteOptimizations()'''
0794         return QGeoRouteRequest.RouteOptimizations()
0795     def supportedFeatureWeights(self):
0796         '''QGeoRouteRequest.FeatureWeights QGeoRoutingManagerEngine.supportedFeatureWeights()'''
0797         return QGeoRouteRequest.FeatureWeights()
0798     def supportedFeatureTypes(self):
0799         '''QGeoRouteRequest.FeatureTypes QGeoRoutingManagerEngine.supportedFeatureTypes()'''
0800         return QGeoRouteRequest.FeatureTypes()
0801     def supportedTravelModes(self):
0802         '''QGeoRouteRequest.TravelModes QGeoRoutingManagerEngine.supportedTravelModes()'''
0803         return QGeoRouteRequest.TravelModes()
0804     def updateRoute(self, route, position):
0805         '''QGeoRouteReply QGeoRoutingManagerEngine.updateRoute(QGeoRoute route, QGeoCoordinate position)'''
0806         return QGeoRouteReply()
0807     def calculateRoute(self, request):
0808         '''abstract QGeoRouteReply QGeoRoutingManagerEngine.calculateRoute(QGeoRouteRequest request)'''
0809         return QGeoRouteReply()
0810     def managerVersion(self):
0811         '''int QGeoRoutingManagerEngine.managerVersion()'''
0812         return int()
0813     def managerName(self):
0814         '''str QGeoRoutingManagerEngine.managerName()'''
0815         return str()
0816 
0817 
0818 class QGeoServiceProvider(QObject):
0819     """"""
0820     # Enum QGeoServiceProvider.PlacesFeature
0821     NoPlacesFeatures = 0
0822     OnlinePlacesFeature = 0
0823     OfflinePlacesFeature = 0
0824     SavePlaceFeature = 0
0825     RemovePlaceFeature = 0
0826     SaveCategoryFeature = 0
0827     RemoveCategoryFeature = 0
0828     PlaceRecommendationsFeature = 0
0829     SearchSuggestionsFeature = 0
0830     LocalizedPlacesFeature = 0
0831     NotificationsFeature = 0
0832     PlaceMatchingFeature = 0
0833     AnyPlacesFeatures = 0
0834 
0835     # Enum QGeoServiceProvider.MappingFeature
0836     NoMappingFeatures = 0
0837     OnlineMappingFeature = 0
0838     OfflineMappingFeature = 0
0839     LocalizedMappingFeature = 0
0840     AnyMappingFeatures = 0
0841 
0842     # Enum QGeoServiceProvider.GeocodingFeature
0843     NoGeocodingFeatures = 0
0844     OnlineGeocodingFeature = 0
0845     OfflineGeocodingFeature = 0
0846     ReverseGeocodingFeature = 0
0847     LocalizedGeocodingFeature = 0
0848     AnyGeocodingFeatures = 0
0849 
0850     # Enum QGeoServiceProvider.RoutingFeature
0851     NoRoutingFeatures = 0
0852     OnlineRoutingFeature = 0
0853     OfflineRoutingFeature = 0
0854     LocalizedRoutingFeature = 0
0855     RouteUpdatesFeature = 0
0856     AlternativeRoutesFeature = 0
0857     ExcludeAreasRoutingFeature = 0
0858     AnyRoutingFeatures = 0
0859 
0860     # Enum QGeoServiceProvider.Error
0861     NoError = 0
0862     NotSupportedError = 0
0863     UnknownParameterError = 0
0864     MissingRequiredParameterError = 0
0865     ConnectionError = 0
0866 
0867     def __init__(self, providerName, parameters = None, allowExperimental = False):
0868         '''void QGeoServiceProvider.__init__(str providerName, dict-of-str-object parameters = QMaplt;str,QVariantgt;(), bool allowExperimental = False)'''
0869     def setAllowExperimental(self, allow):
0870         '''void QGeoServiceProvider.setAllowExperimental(bool allow)'''
0871     def setLocale(self, locale):
0872         '''void QGeoServiceProvider.setLocale(QLocale locale)'''
0873     def setParameters(self, parameters):
0874         '''void QGeoServiceProvider.setParameters(dict-of-str-object parameters)'''
0875     def errorString(self):
0876         '''str QGeoServiceProvider.errorString()'''
0877         return str()
0878     def error(self):
0879         '''QGeoServiceProvider.Error QGeoServiceProvider.error()'''
0880         return QGeoServiceProvider.Error()
0881     def placeManager(self):
0882         '''QPlaceManager QGeoServiceProvider.placeManager()'''
0883         return QPlaceManager()
0884     def routingManager(self):
0885         '''QGeoRoutingManager QGeoServiceProvider.routingManager()'''
0886         return QGeoRoutingManager()
0887     def geocodingManager(self):
0888         '''QGeoCodingManager QGeoServiceProvider.geocodingManager()'''
0889         return QGeoCodingManager()
0890     def placesFeatures(self):
0891         '''QGeoServiceProvider.PlacesFeatures QGeoServiceProvider.placesFeatures()'''
0892         return QGeoServiceProvider.PlacesFeatures()
0893     def mappingFeatures(self):
0894         '''QGeoServiceProvider.MappingFeatures QGeoServiceProvider.mappingFeatures()'''
0895         return QGeoServiceProvider.MappingFeatures()
0896     def geocodingFeatures(self):
0897         '''QGeoServiceProvider.GeocodingFeatures QGeoServiceProvider.geocodingFeatures()'''
0898         return QGeoServiceProvider.GeocodingFeatures()
0899     def routingFeatures(self):
0900         '''QGeoServiceProvider.RoutingFeatures QGeoServiceProvider.routingFeatures()'''
0901         return QGeoServiceProvider.RoutingFeatures()
0902     def availableServiceProviders(self):
0903         '''static list-of-str QGeoServiceProvider.availableServiceProviders()'''
0904         return [str()]
0905     class GeocodingFeatures():
0906         """"""
0907         def __init__(self):
0908             '''QGeoServiceProvider.GeocodingFeatures QGeoServiceProvider.GeocodingFeatures.__init__()'''
0909             return QGeoServiceProvider.GeocodingFeatures()
0910         def __init__(self):
0911             '''int QGeoServiceProvider.GeocodingFeatures.__init__()'''
0912             return int()
0913         def __init__(self):
0914             '''void QGeoServiceProvider.GeocodingFeatures.__init__()'''
0915         def __bool__(self):
0916             '''int QGeoServiceProvider.GeocodingFeatures.__bool__()'''
0917             return int()
0918         def __ne__(self, f):
0919             '''bool QGeoServiceProvider.GeocodingFeatures.__ne__(QGeoServiceProvider.GeocodingFeatures f)'''
0920             return bool()
0921         def __eq__(self, f):
0922             '''bool QGeoServiceProvider.GeocodingFeatures.__eq__(QGeoServiceProvider.GeocodingFeatures f)'''
0923             return bool()
0924         def __invert__(self):
0925             '''QGeoServiceProvider.GeocodingFeatures QGeoServiceProvider.GeocodingFeatures.__invert__()'''
0926             return QGeoServiceProvider.GeocodingFeatures()
0927         def __and__(self, mask):
0928             '''QGeoServiceProvider.GeocodingFeatures QGeoServiceProvider.GeocodingFeatures.__and__(int mask)'''
0929             return QGeoServiceProvider.GeocodingFeatures()
0930         def __xor__(self, f):
0931             '''QGeoServiceProvider.GeocodingFeatures QGeoServiceProvider.GeocodingFeatures.__xor__(QGeoServiceProvider.GeocodingFeatures f)'''
0932             return QGeoServiceProvider.GeocodingFeatures()
0933         def __xor__(self, f):
0934             '''QGeoServiceProvider.GeocodingFeatures QGeoServiceProvider.GeocodingFeatures.__xor__(int f)'''
0935             return QGeoServiceProvider.GeocodingFeatures()
0936         def __or__(self, f):
0937             '''QGeoServiceProvider.GeocodingFeatures QGeoServiceProvider.GeocodingFeatures.__or__(QGeoServiceProvider.GeocodingFeatures f)'''
0938             return QGeoServiceProvider.GeocodingFeatures()
0939         def __or__(self, f):
0940             '''QGeoServiceProvider.GeocodingFeatures QGeoServiceProvider.GeocodingFeatures.__or__(int f)'''
0941             return QGeoServiceProvider.GeocodingFeatures()
0942         def __int__(self):
0943             '''int QGeoServiceProvider.GeocodingFeatures.__int__()'''
0944             return int()
0945         def __ixor__(self, f):
0946             '''QGeoServiceProvider.GeocodingFeatures QGeoServiceProvider.GeocodingFeatures.__ixor__(QGeoServiceProvider.GeocodingFeatures f)'''
0947             return QGeoServiceProvider.GeocodingFeatures()
0948         def __ior__(self, f):
0949             '''QGeoServiceProvider.GeocodingFeatures QGeoServiceProvider.GeocodingFeatures.__ior__(QGeoServiceProvider.GeocodingFeatures f)'''
0950             return QGeoServiceProvider.GeocodingFeatures()
0951         def __iand__(self, mask):
0952             '''QGeoServiceProvider.GeocodingFeatures QGeoServiceProvider.GeocodingFeatures.__iand__(int mask)'''
0953             return QGeoServiceProvider.GeocodingFeatures()
0954     class RoutingFeatures():
0955         """"""
0956         def __init__(self):
0957             '''QGeoServiceProvider.RoutingFeatures QGeoServiceProvider.RoutingFeatures.__init__()'''
0958             return QGeoServiceProvider.RoutingFeatures()
0959         def __init__(self):
0960             '''int QGeoServiceProvider.RoutingFeatures.__init__()'''
0961             return int()
0962         def __init__(self):
0963             '''void QGeoServiceProvider.RoutingFeatures.__init__()'''
0964         def __bool__(self):
0965             '''int QGeoServiceProvider.RoutingFeatures.__bool__()'''
0966             return int()
0967         def __ne__(self, f):
0968             '''bool QGeoServiceProvider.RoutingFeatures.__ne__(QGeoServiceProvider.RoutingFeatures f)'''
0969             return bool()
0970         def __eq__(self, f):
0971             '''bool QGeoServiceProvider.RoutingFeatures.__eq__(QGeoServiceProvider.RoutingFeatures f)'''
0972             return bool()
0973         def __invert__(self):
0974             '''QGeoServiceProvider.RoutingFeatures QGeoServiceProvider.RoutingFeatures.__invert__()'''
0975             return QGeoServiceProvider.RoutingFeatures()
0976         def __and__(self, mask):
0977             '''QGeoServiceProvider.RoutingFeatures QGeoServiceProvider.RoutingFeatures.__and__(int mask)'''
0978             return QGeoServiceProvider.RoutingFeatures()
0979         def __xor__(self, f):
0980             '''QGeoServiceProvider.RoutingFeatures QGeoServiceProvider.RoutingFeatures.__xor__(QGeoServiceProvider.RoutingFeatures f)'''
0981             return QGeoServiceProvider.RoutingFeatures()
0982         def __xor__(self, f):
0983             '''QGeoServiceProvider.RoutingFeatures QGeoServiceProvider.RoutingFeatures.__xor__(int f)'''
0984             return QGeoServiceProvider.RoutingFeatures()
0985         def __or__(self, f):
0986             '''QGeoServiceProvider.RoutingFeatures QGeoServiceProvider.RoutingFeatures.__or__(QGeoServiceProvider.RoutingFeatures f)'''
0987             return QGeoServiceProvider.RoutingFeatures()
0988         def __or__(self, f):
0989             '''QGeoServiceProvider.RoutingFeatures QGeoServiceProvider.RoutingFeatures.__or__(int f)'''
0990             return QGeoServiceProvider.RoutingFeatures()
0991         def __int__(self):
0992             '''int QGeoServiceProvider.RoutingFeatures.__int__()'''
0993             return int()
0994         def __ixor__(self, f):
0995             '''QGeoServiceProvider.RoutingFeatures QGeoServiceProvider.RoutingFeatures.__ixor__(QGeoServiceProvider.RoutingFeatures f)'''
0996             return QGeoServiceProvider.RoutingFeatures()
0997         def __ior__(self, f):
0998             '''QGeoServiceProvider.RoutingFeatures QGeoServiceProvider.RoutingFeatures.__ior__(QGeoServiceProvider.RoutingFeatures f)'''
0999             return QGeoServiceProvider.RoutingFeatures()
1000         def __iand__(self, mask):
1001             '''QGeoServiceProvider.RoutingFeatures QGeoServiceProvider.RoutingFeatures.__iand__(int mask)'''
1002             return QGeoServiceProvider.RoutingFeatures()
1003     class MappingFeatures():
1004         """"""
1005         def __init__(self):
1006             '''QGeoServiceProvider.MappingFeatures QGeoServiceProvider.MappingFeatures.__init__()'''
1007             return QGeoServiceProvider.MappingFeatures()
1008         def __init__(self):
1009             '''int QGeoServiceProvider.MappingFeatures.__init__()'''
1010             return int()
1011         def __init__(self):
1012             '''void QGeoServiceProvider.MappingFeatures.__init__()'''
1013         def __bool__(self):
1014             '''int QGeoServiceProvider.MappingFeatures.__bool__()'''
1015             return int()
1016         def __ne__(self, f):
1017             '''bool QGeoServiceProvider.MappingFeatures.__ne__(QGeoServiceProvider.MappingFeatures f)'''
1018             return bool()
1019         def __eq__(self, f):
1020             '''bool QGeoServiceProvider.MappingFeatures.__eq__(QGeoServiceProvider.MappingFeatures f)'''
1021             return bool()
1022         def __invert__(self):
1023             '''QGeoServiceProvider.MappingFeatures QGeoServiceProvider.MappingFeatures.__invert__()'''
1024             return QGeoServiceProvider.MappingFeatures()
1025         def __and__(self, mask):
1026             '''QGeoServiceProvider.MappingFeatures QGeoServiceProvider.MappingFeatures.__and__(int mask)'''
1027             return QGeoServiceProvider.MappingFeatures()
1028         def __xor__(self, f):
1029             '''QGeoServiceProvider.MappingFeatures QGeoServiceProvider.MappingFeatures.__xor__(QGeoServiceProvider.MappingFeatures f)'''
1030             return QGeoServiceProvider.MappingFeatures()
1031         def __xor__(self, f):
1032             '''QGeoServiceProvider.MappingFeatures QGeoServiceProvider.MappingFeatures.__xor__(int f)'''
1033             return QGeoServiceProvider.MappingFeatures()
1034         def __or__(self, f):
1035             '''QGeoServiceProvider.MappingFeatures QGeoServiceProvider.MappingFeatures.__or__(QGeoServiceProvider.MappingFeatures f)'''
1036             return QGeoServiceProvider.MappingFeatures()
1037         def __or__(self, f):
1038             '''QGeoServiceProvider.MappingFeatures QGeoServiceProvider.MappingFeatures.__or__(int f)'''
1039             return QGeoServiceProvider.MappingFeatures()
1040         def __int__(self):
1041             '''int QGeoServiceProvider.MappingFeatures.__int__()'''
1042             return int()
1043         def __ixor__(self, f):
1044             '''QGeoServiceProvider.MappingFeatures QGeoServiceProvider.MappingFeatures.__ixor__(QGeoServiceProvider.MappingFeatures f)'''
1045             return QGeoServiceProvider.MappingFeatures()
1046         def __ior__(self, f):
1047             '''QGeoServiceProvider.MappingFeatures QGeoServiceProvider.MappingFeatures.__ior__(QGeoServiceProvider.MappingFeatures f)'''
1048             return QGeoServiceProvider.MappingFeatures()
1049         def __iand__(self, mask):
1050             '''QGeoServiceProvider.MappingFeatures QGeoServiceProvider.MappingFeatures.__iand__(int mask)'''
1051             return QGeoServiceProvider.MappingFeatures()
1052     class PlacesFeatures():
1053         """"""
1054         def __init__(self):
1055             '''QGeoServiceProvider.PlacesFeatures QGeoServiceProvider.PlacesFeatures.__init__()'''
1056             return QGeoServiceProvider.PlacesFeatures()
1057         def __init__(self):
1058             '''int QGeoServiceProvider.PlacesFeatures.__init__()'''
1059             return int()
1060         def __init__(self):
1061             '''void QGeoServiceProvider.PlacesFeatures.__init__()'''
1062         def __bool__(self):
1063             '''int QGeoServiceProvider.PlacesFeatures.__bool__()'''
1064             return int()
1065         def __ne__(self, f):
1066             '''bool QGeoServiceProvider.PlacesFeatures.__ne__(QGeoServiceProvider.PlacesFeatures f)'''
1067             return bool()
1068         def __eq__(self, f):
1069             '''bool QGeoServiceProvider.PlacesFeatures.__eq__(QGeoServiceProvider.PlacesFeatures f)'''
1070             return bool()
1071         def __invert__(self):
1072             '''QGeoServiceProvider.PlacesFeatures QGeoServiceProvider.PlacesFeatures.__invert__()'''
1073             return QGeoServiceProvider.PlacesFeatures()
1074         def __and__(self, mask):
1075             '''QGeoServiceProvider.PlacesFeatures QGeoServiceProvider.PlacesFeatures.__and__(int mask)'''
1076             return QGeoServiceProvider.PlacesFeatures()
1077         def __xor__(self, f):
1078             '''QGeoServiceProvider.PlacesFeatures QGeoServiceProvider.PlacesFeatures.__xor__(QGeoServiceProvider.PlacesFeatures f)'''
1079             return QGeoServiceProvider.PlacesFeatures()
1080         def __xor__(self, f):
1081             '''QGeoServiceProvider.PlacesFeatures QGeoServiceProvider.PlacesFeatures.__xor__(int f)'''
1082             return QGeoServiceProvider.PlacesFeatures()
1083         def __or__(self, f):
1084             '''QGeoServiceProvider.PlacesFeatures QGeoServiceProvider.PlacesFeatures.__or__(QGeoServiceProvider.PlacesFeatures f)'''
1085             return QGeoServiceProvider.PlacesFeatures()
1086         def __or__(self, f):
1087             '''QGeoServiceProvider.PlacesFeatures QGeoServiceProvider.PlacesFeatures.__or__(int f)'''
1088             return QGeoServiceProvider.PlacesFeatures()
1089         def __int__(self):
1090             '''int QGeoServiceProvider.PlacesFeatures.__int__()'''
1091             return int()
1092         def __ixor__(self, f):
1093             '''QGeoServiceProvider.PlacesFeatures QGeoServiceProvider.PlacesFeatures.__ixor__(QGeoServiceProvider.PlacesFeatures f)'''
1094             return QGeoServiceProvider.PlacesFeatures()
1095         def __ior__(self, f):
1096             '''QGeoServiceProvider.PlacesFeatures QGeoServiceProvider.PlacesFeatures.__ior__(QGeoServiceProvider.PlacesFeatures f)'''
1097             return QGeoServiceProvider.PlacesFeatures()
1098         def __iand__(self, mask):
1099             '''QGeoServiceProvider.PlacesFeatures QGeoServiceProvider.PlacesFeatures.__iand__(int mask)'''
1100             return QGeoServiceProvider.PlacesFeatures()
1101 
1102 
1103 class QLocation():
1104     """"""
1105     # Enum QLocation.Visibility
1106     UnspecifiedVisibility = 0
1107     DeviceVisibility = 0
1108     PrivateVisibility = 0
1109     PublicVisibility = 0
1110 
1111     class VisibilityScope():
1112         """"""
1113         def __init__(self):
1114             '''QLocation.VisibilityScope QLocation.VisibilityScope.__init__()'''
1115             return QLocation.VisibilityScope()
1116         def __init__(self):
1117             '''int QLocation.VisibilityScope.__init__()'''
1118             return int()
1119         def __init__(self):
1120             '''void QLocation.VisibilityScope.__init__()'''
1121         def __bool__(self):
1122             '''int QLocation.VisibilityScope.__bool__()'''
1123             return int()
1124         def __ne__(self, f):
1125             '''bool QLocation.VisibilityScope.__ne__(QLocation.VisibilityScope f)'''
1126             return bool()
1127         def __eq__(self, f):
1128             '''bool QLocation.VisibilityScope.__eq__(QLocation.VisibilityScope f)'''
1129             return bool()
1130         def __invert__(self):
1131             '''QLocation.VisibilityScope QLocation.VisibilityScope.__invert__()'''
1132             return QLocation.VisibilityScope()
1133         def __and__(self, mask):
1134             '''QLocation.VisibilityScope QLocation.VisibilityScope.__and__(int mask)'''
1135             return QLocation.VisibilityScope()
1136         def __xor__(self, f):
1137             '''QLocation.VisibilityScope QLocation.VisibilityScope.__xor__(QLocation.VisibilityScope f)'''
1138             return QLocation.VisibilityScope()
1139         def __xor__(self, f):
1140             '''QLocation.VisibilityScope QLocation.VisibilityScope.__xor__(int f)'''
1141             return QLocation.VisibilityScope()
1142         def __or__(self, f):
1143             '''QLocation.VisibilityScope QLocation.VisibilityScope.__or__(QLocation.VisibilityScope f)'''
1144             return QLocation.VisibilityScope()
1145         def __or__(self, f):
1146             '''QLocation.VisibilityScope QLocation.VisibilityScope.__or__(int f)'''
1147             return QLocation.VisibilityScope()
1148         def __int__(self):
1149             '''int QLocation.VisibilityScope.__int__()'''
1150             return int()
1151         def __ixor__(self, f):
1152             '''QLocation.VisibilityScope QLocation.VisibilityScope.__ixor__(QLocation.VisibilityScope f)'''
1153             return QLocation.VisibilityScope()
1154         def __ior__(self, f):
1155             '''QLocation.VisibilityScope QLocation.VisibilityScope.__ior__(QLocation.VisibilityScope f)'''
1156             return QLocation.VisibilityScope()
1157         def __iand__(self, mask):
1158             '''QLocation.VisibilityScope QLocation.VisibilityScope.__iand__(int mask)'''
1159             return QLocation.VisibilityScope()
1160 
1161 
1162 class QPlace():
1163     """"""
1164     def __init__(self):
1165         '''void QPlace.__init__()'''
1166     def __init__(self, other):
1167         '''void QPlace.__init__(QPlace other)'''
1168     def isEmpty(self):
1169         '''bool QPlace.isEmpty()'''
1170         return bool()
1171     def setVisibility(self, visibility):
1172         '''void QPlace.setVisibility(QLocation.Visibility visibility)'''
1173     def visibility(self):
1174         '''QLocation.Visibility QPlace.visibility()'''
1175         return QLocation.Visibility()
1176     def removeContactDetails(self, contactType):
1177         '''void QPlace.removeContactDetails(str contactType)'''
1178     def appendContactDetail(self, contactType, detail):
1179         '''void QPlace.appendContactDetail(str contactType, QPlaceContactDetail detail)'''
1180     def setContactDetails(self, contactType, details):
1181         '''void QPlace.setContactDetails(str contactType, list-of-QPlaceContactDetail details)'''
1182     def contactDetails(self, contactType):
1183         '''list-of-QPlaceContactDetail QPlace.contactDetails(str contactType)'''
1184         return [QPlaceContactDetail()]
1185     def contactTypes(self):
1186         '''list-of-str QPlace.contactTypes()'''
1187         return [str()]
1188     def removeExtendedAttribute(self, attributeType):
1189         '''void QPlace.removeExtendedAttribute(str attributeType)'''
1190     def setExtendedAttribute(self, attributeType, attribute):
1191         '''void QPlace.setExtendedAttribute(str attributeType, QPlaceAttribute attribute)'''
1192     def extendedAttribute(self, attributeType):
1193         '''QPlaceAttribute QPlace.extendedAttribute(str attributeType)'''
1194         return QPlaceAttribute()
1195     def extendedAttributeTypes(self):
1196         '''list-of-str QPlace.extendedAttributeTypes()'''
1197         return [str()]
1198     def setDetailsFetched(self, fetched):
1199         '''void QPlace.setDetailsFetched(bool fetched)'''
1200     def detailsFetched(self):
1201         '''bool QPlace.detailsFetched()'''
1202         return bool()
1203     def primaryWebsite(self):
1204         '''QUrl QPlace.primaryWebsite()'''
1205         return QUrl()
1206     def primaryEmail(self):
1207         '''str QPlace.primaryEmail()'''
1208         return str()
1209     def primaryFax(self):
1210         '''str QPlace.primaryFax()'''
1211         return str()
1212     def primaryPhone(self):
1213         '''str QPlace.primaryPhone()'''
1214         return str()
1215     def setPlaceId(self, identifier):
1216         '''void QPlace.setPlaceId(str identifier)'''
1217     def placeId(self):
1218         '''str QPlace.placeId()'''
1219         return str()
1220     def setName(self, name):
1221         '''void QPlace.setName(str name)'''
1222     def name(self):
1223         '''str QPlace.name()'''
1224         return str()
1225     def setTotalContentCount(self, type, total):
1226         '''void QPlace.setTotalContentCount(QPlaceContent.Type type, int total)'''
1227     def totalContentCount(self, type):
1228         '''int QPlace.totalContentCount(QPlaceContent.Type type)'''
1229         return int()
1230     def insertContent(self, type, content):
1231         '''void QPlace.insertContent(QPlaceContent.Type type, dict-of-int-QPlaceContent content)'''
1232     def setContent(self, type, content):
1233         '''void QPlace.setContent(QPlaceContent.Type type, dict-of-int-QPlaceContent content)'''
1234     def content(self, type):
1235         '''dict-of-int-QPlaceContent QPlace.content(QPlaceContent.Type type)'''
1236         return {int():QPlaceContent()}
1237     def setIcon(self, icon):
1238         '''void QPlace.setIcon(QPlaceIcon icon)'''
1239     def icon(self):
1240         '''QPlaceIcon QPlace.icon()'''
1241         return QPlaceIcon()
1242     def setAttribution(self, attribution):
1243         '''void QPlace.setAttribution(str attribution)'''
1244     def attribution(self):
1245         '''str QPlace.attribution()'''
1246         return str()
1247     def setSupplier(self, supplier):
1248         '''void QPlace.setSupplier(QPlaceSupplier supplier)'''
1249     def supplier(self):
1250         '''QPlaceSupplier QPlace.supplier()'''
1251         return QPlaceSupplier()
1252     def setRatings(self, ratings):
1253         '''void QPlace.setRatings(QPlaceRatings ratings)'''
1254     def ratings(self):
1255         '''QPlaceRatings QPlace.ratings()'''
1256         return QPlaceRatings()
1257     def setLocation(self, location):
1258         '''void QPlace.setLocation(QGeoLocation location)'''
1259     def location(self):
1260         '''QGeoLocation QPlace.location()'''
1261         return QGeoLocation()
1262     def setCategories(self, categories):
1263         '''void QPlace.setCategories(list-of-QPlaceCategory categories)'''
1264     def setCategory(self, category):
1265         '''void QPlace.setCategory(QPlaceCategory category)'''
1266     def categories(self):
1267         '''list-of-QPlaceCategory QPlace.categories()'''
1268         return [QPlaceCategory()]
1269     def __ne__(self, other):
1270         '''bool QPlace.__ne__(QPlace other)'''
1271         return bool()
1272     def __eq__(self, other):
1273         '''bool QPlace.__eq__(QPlace other)'''
1274         return bool()
1275 
1276 
1277 class QPlaceAttribute():
1278     """"""
1279     OpeningHours = None # str - member
1280     Payment = None # str - member
1281     Provider = None # str - member
1282     def __init__(self):
1283         '''void QPlaceAttribute.__init__()'''
1284     def __init__(self, other):
1285         '''void QPlaceAttribute.__init__(QPlaceAttribute other)'''
1286     def isEmpty(self):
1287         '''bool QPlaceAttribute.isEmpty()'''
1288         return bool()
1289     def setText(self, text):
1290         '''void QPlaceAttribute.setText(str text)'''
1291     def text(self):
1292         '''str QPlaceAttribute.text()'''
1293         return str()
1294     def setLabel(self, label):
1295         '''void QPlaceAttribute.setLabel(str label)'''
1296     def label(self):
1297         '''str QPlaceAttribute.label()'''
1298         return str()
1299     def __ne__(self, other):
1300         '''bool QPlaceAttribute.__ne__(QPlaceAttribute other)'''
1301         return bool()
1302     def __eq__(self, other):
1303         '''bool QPlaceAttribute.__eq__(QPlaceAttribute other)'''
1304         return bool()
1305 
1306 
1307 class QPlaceCategory():
1308     """"""
1309     def __init__(self):
1310         '''void QPlaceCategory.__init__()'''
1311     def __init__(self, other):
1312         '''void QPlaceCategory.__init__(QPlaceCategory other)'''
1313     def isEmpty(self):
1314         '''bool QPlaceCategory.isEmpty()'''
1315         return bool()
1316     def setIcon(self, icon):
1317         '''void QPlaceCategory.setIcon(QPlaceIcon icon)'''
1318     def icon(self):
1319         '''QPlaceIcon QPlaceCategory.icon()'''
1320         return QPlaceIcon()
1321     def setVisibility(self, visibility):
1322         '''void QPlaceCategory.setVisibility(QLocation.Visibility visibility)'''
1323     def visibility(self):
1324         '''QLocation.Visibility QPlaceCategory.visibility()'''
1325         return QLocation.Visibility()
1326     def setName(self, name):
1327         '''void QPlaceCategory.setName(str name)'''
1328     def name(self):
1329         '''str QPlaceCategory.name()'''
1330         return str()
1331     def setCategoryId(self, identifier):
1332         '''void QPlaceCategory.setCategoryId(str identifier)'''
1333     def categoryId(self):
1334         '''str QPlaceCategory.categoryId()'''
1335         return str()
1336     def __ne__(self, other):
1337         '''bool QPlaceCategory.__ne__(QPlaceCategory other)'''
1338         return bool()
1339     def __eq__(self, other):
1340         '''bool QPlaceCategory.__eq__(QPlaceCategory other)'''
1341         return bool()
1342 
1343 
1344 class QPlaceContactDetail():
1345     """"""
1346     Email = None # str - member
1347     Fax = None # str - member
1348     Phone = None # str - member
1349     Website = None # str - member
1350     def __init__(self):
1351         '''void QPlaceContactDetail.__init__()'''
1352     def __init__(self, other):
1353         '''void QPlaceContactDetail.__init__(QPlaceContactDetail other)'''
1354     def clear(self):
1355         '''void QPlaceContactDetail.clear()'''
1356     def setValue(self, value):
1357         '''void QPlaceContactDetail.setValue(str value)'''
1358     def value(self):
1359         '''str QPlaceContactDetail.value()'''
1360         return str()
1361     def setLabel(self, label):
1362         '''void QPlaceContactDetail.setLabel(str label)'''
1363     def label(self):
1364         '''str QPlaceContactDetail.label()'''
1365         return str()
1366     def __ne__(self, other):
1367         '''bool QPlaceContactDetail.__ne__(QPlaceContactDetail other)'''
1368         return bool()
1369     def __eq__(self, other):
1370         '''bool QPlaceContactDetail.__eq__(QPlaceContactDetail other)'''
1371         return bool()
1372 
1373 
1374 class QPlaceContent():
1375     """"""
1376     # Enum QPlaceContent.Type
1377     NoType = 0
1378     ImageType = 0
1379     ReviewType = 0
1380     EditorialType = 0
1381 
1382     def __init__(self):
1383         '''void QPlaceContent.__init__()'''
1384     def __init__(self, other):
1385         '''void QPlaceContent.__init__(QPlaceContent other)'''
1386     def setAttribution(self, attribution):
1387         '''void QPlaceContent.setAttribution(str attribution)'''
1388     def attribution(self):
1389         '''str QPlaceContent.attribution()'''
1390         return str()
1391     def setUser(self, user):
1392         '''void QPlaceContent.setUser(QPlaceUser user)'''
1393     def user(self):
1394         '''QPlaceUser QPlaceContent.user()'''
1395         return QPlaceUser()
1396     def setSupplier(self, supplier):
1397         '''void QPlaceContent.setSupplier(QPlaceSupplier supplier)'''
1398     def supplier(self):
1399         '''QPlaceSupplier QPlaceContent.supplier()'''
1400         return QPlaceSupplier()
1401     def type(self):
1402         '''QPlaceContent.Type QPlaceContent.type()'''
1403         return QPlaceContent.Type()
1404     def __ne__(self, other):
1405         '''bool QPlaceContent.__ne__(QPlaceContent other)'''
1406         return bool()
1407     def __eq__(self, other):
1408         '''bool QPlaceContent.__eq__(QPlaceContent other)'''
1409         return bool()
1410 
1411 
1412 class QPlaceReply(QObject):
1413     """"""
1414     # Enum QPlaceReply.Type
1415     Reply = 0
1416     DetailsReply = 0
1417     SearchReply = 0
1418     SearchSuggestionReply = 0
1419     ContentReply = 0
1420     IdReply = 0
1421     MatchReply = 0
1422 
1423     # Enum QPlaceReply.Error
1424     NoError = 0
1425     PlaceDoesNotExistError = 0
1426     CategoryDoesNotExistError = 0
1427     CommunicationError = 0
1428     ParseError = 0
1429     PermissionsError = 0
1430     UnsupportedError = 0
1431     BadArgumentError = 0
1432     CancelError = 0
1433     UnknownError = 0
1434 
1435     def __init__(self, parent = None):
1436         '''void QPlaceReply.__init__(QObject parent = None)'''
1437     def setError(self, error, errorString):
1438         '''void QPlaceReply.setError(QPlaceReply.Error error, str errorString)'''
1439     def setFinished(self, finished):
1440         '''void QPlaceReply.setFinished(bool finished)'''
1441     finished = pyqtSignal() # void finished() - signal
1442     def abort(self):
1443         '''void QPlaceReply.abort()'''
1444     def error(self):
1445         '''QPlaceReply.Error QPlaceReply.error()'''
1446         return QPlaceReply.Error()
1447     error = pyqtSignal() # void error(QPlaceReply::Error,const QStringamp; = QString()) - signal
1448     def errorString(self):
1449         '''str QPlaceReply.errorString()'''
1450         return str()
1451     def type(self):
1452         '''QPlaceReply.Type QPlaceReply.type()'''
1453         return QPlaceReply.Type()
1454     def isFinished(self):
1455         '''bool QPlaceReply.isFinished()'''
1456         return bool()
1457 
1458 
1459 class QPlaceContentReply(QPlaceReply):
1460     """"""
1461     def __init__(self, parent = None):
1462         '''void QPlaceContentReply.__init__(QObject parent = None)'''
1463     def setNextPageRequest(self, next):
1464         '''void QPlaceContentReply.setNextPageRequest(QPlaceContentRequest next)'''
1465     def setPreviousPageRequest(self, previous):
1466         '''void QPlaceContentReply.setPreviousPageRequest(QPlaceContentRequest previous)'''
1467     def setRequest(self, request):
1468         '''void QPlaceContentReply.setRequest(QPlaceContentRequest request)'''
1469     def setTotalCount(self, total):
1470         '''void QPlaceContentReply.setTotalCount(int total)'''
1471     def setContent(self, content):
1472         '''void QPlaceContentReply.setContent(dict-of-int-QPlaceContent content)'''
1473     def nextPageRequest(self):
1474         '''QPlaceContentRequest QPlaceContentReply.nextPageRequest()'''
1475         return QPlaceContentRequest()
1476     def previousPageRequest(self):
1477         '''QPlaceContentRequest QPlaceContentReply.previousPageRequest()'''
1478         return QPlaceContentRequest()
1479     def request(self):
1480         '''QPlaceContentRequest QPlaceContentReply.request()'''
1481         return QPlaceContentRequest()
1482     def totalCount(self):
1483         '''int QPlaceContentReply.totalCount()'''
1484         return int()
1485     def content(self):
1486         '''dict-of-int-QPlaceContent QPlaceContentReply.content()'''
1487         return {int():QPlaceContent()}
1488     def type(self):
1489         '''QPlaceReply.Type QPlaceContentReply.type()'''
1490         return QPlaceReply.Type()
1491 
1492 
1493 class QPlaceContentRequest():
1494     """"""
1495     def __init__(self):
1496         '''void QPlaceContentRequest.__init__()'''
1497     def __init__(self, other):
1498         '''void QPlaceContentRequest.__init__(QPlaceContentRequest other)'''
1499     def clear(self):
1500         '''void QPlaceContentRequest.clear()'''
1501     def setLimit(self, limit):
1502         '''void QPlaceContentRequest.setLimit(int limit)'''
1503     def limit(self):
1504         '''int QPlaceContentRequest.limit()'''
1505         return int()
1506     def setContentContext(self, context):
1507         '''void QPlaceContentRequest.setContentContext(QVariant context)'''
1508     def contentContext(self):
1509         '''QVariant QPlaceContentRequest.contentContext()'''
1510         return QVariant()
1511     def setPlaceId(self, identifier):
1512         '''void QPlaceContentRequest.setPlaceId(str identifier)'''
1513     def placeId(self):
1514         '''str QPlaceContentRequest.placeId()'''
1515         return str()
1516     def setContentType(self, type):
1517         '''void QPlaceContentRequest.setContentType(QPlaceContent.Type type)'''
1518     def contentType(self):
1519         '''QPlaceContent.Type QPlaceContentRequest.contentType()'''
1520         return QPlaceContent.Type()
1521     def __ne__(self, other):
1522         '''bool QPlaceContentRequest.__ne__(QPlaceContentRequest other)'''
1523         return bool()
1524     def __eq__(self, other):
1525         '''bool QPlaceContentRequest.__eq__(QPlaceContentRequest other)'''
1526         return bool()
1527 
1528 
1529 class QPlaceDetailsReply(QPlaceReply):
1530     """"""
1531     def __init__(self, parent = None):
1532         '''void QPlaceDetailsReply.__init__(QObject parent = None)'''
1533     def setPlace(self, place):
1534         '''void QPlaceDetailsReply.setPlace(QPlace place)'''
1535     def place(self):
1536         '''QPlace QPlaceDetailsReply.place()'''
1537         return QPlace()
1538     def type(self):
1539         '''QPlaceReply.Type QPlaceDetailsReply.type()'''
1540         return QPlaceReply.Type()
1541 
1542 
1543 class QPlaceEditorial(QPlaceContent):
1544     """"""
1545     def __init__(self):
1546         '''void QPlaceEditorial.__init__()'''
1547     def __init__(self, other):
1548         '''void QPlaceEditorial.__init__(QPlaceContent other)'''
1549     def __init__(self):
1550         '''QPlaceEditorial QPlaceEditorial.__init__()'''
1551         return QPlaceEditorial()
1552     def setLanguage(self, data):
1553         '''void QPlaceEditorial.setLanguage(str data)'''
1554     def language(self):
1555         '''str QPlaceEditorial.language()'''
1556         return str()
1557     def setTitle(self, data):
1558         '''void QPlaceEditorial.setTitle(str data)'''
1559     def title(self):
1560         '''str QPlaceEditorial.title()'''
1561         return str()
1562     def setText(self, text):
1563         '''void QPlaceEditorial.setText(str text)'''
1564     def text(self):
1565         '''str QPlaceEditorial.text()'''
1566         return str()
1567 
1568 
1569 class QPlaceIcon():
1570     """"""
1571     SingleUrl = None # str - member
1572     def __init__(self):
1573         '''void QPlaceIcon.__init__()'''
1574     def __init__(self, other):
1575         '''void QPlaceIcon.__init__(QPlaceIcon other)'''
1576     def isEmpty(self):
1577         '''bool QPlaceIcon.isEmpty()'''
1578         return bool()
1579     def setParameters(self, parameters):
1580         '''void QPlaceIcon.setParameters(dict-of-str-object parameters)'''
1581     def parameters(self):
1582         '''dict-of-str-object QPlaceIcon.parameters()'''
1583         return {str():object()}
1584     def setManager(self, manager):
1585         '''void QPlaceIcon.setManager(QPlaceManager manager)'''
1586     def manager(self):
1587         '''QPlaceManager QPlaceIcon.manager()'''
1588         return QPlaceManager()
1589     def url(self, size = QSize()):
1590         '''QUrl QPlaceIcon.url(QSize size = QSize())'''
1591         return QUrl()
1592     def __ne__(self, other):
1593         '''bool QPlaceIcon.__ne__(QPlaceIcon other)'''
1594         return bool()
1595     def __eq__(self, other):
1596         '''bool QPlaceIcon.__eq__(QPlaceIcon other)'''
1597         return bool()
1598 
1599 
1600 class QPlaceIdReply(QPlaceReply):
1601     """"""
1602     # Enum QPlaceIdReply.OperationType
1603     SavePlace = 0
1604     SaveCategory = 0
1605     RemovePlace = 0
1606     RemoveCategory = 0
1607 
1608     def __init__(self, operationType, parent = None):
1609         '''void QPlaceIdReply.__init__(QPlaceIdReply.OperationType operationType, QObject parent = None)'''
1610     def setId(self, identifier):
1611         '''void QPlaceIdReply.setId(str identifier)'''
1612     def id(self):
1613         '''str QPlaceIdReply.id()'''
1614         return str()
1615     def operationType(self):
1616         '''QPlaceIdReply.OperationType QPlaceIdReply.operationType()'''
1617         return QPlaceIdReply.OperationType()
1618     def type(self):
1619         '''QPlaceReply.Type QPlaceIdReply.type()'''
1620         return QPlaceReply.Type()
1621 
1622 
1623 class QPlaceImage(QPlaceContent):
1624     """"""
1625     def __init__(self):
1626         '''void QPlaceImage.__init__()'''
1627     def __init__(self, other):
1628         '''void QPlaceImage.__init__(QPlaceContent other)'''
1629     def __init__(self):
1630         '''QPlaceImage QPlaceImage.__init__()'''
1631         return QPlaceImage()
1632     def setMimeType(self, data):
1633         '''void QPlaceImage.setMimeType(str data)'''
1634     def mimeType(self):
1635         '''str QPlaceImage.mimeType()'''
1636         return str()
1637     def setImageId(self, identifier):
1638         '''void QPlaceImage.setImageId(str identifier)'''
1639     def imageId(self):
1640         '''str QPlaceImage.imageId()'''
1641         return str()
1642     def setUrl(self, url):
1643         '''void QPlaceImage.setUrl(QUrl url)'''
1644     def url(self):
1645         '''QUrl QPlaceImage.url()'''
1646         return QUrl()
1647 
1648 
1649 class QPlaceManager(QObject):
1650     """"""
1651     dataChanged = pyqtSignal() # void dataChanged() - signal
1652     categoryRemoved = pyqtSignal() # void categoryRemoved(const QStringamp;,const QStringamp;) - signal
1653     categoryUpdated = pyqtSignal() # void categoryUpdated(const QPlaceCategoryamp;,const QStringamp;) - signal
1654     categoryAdded = pyqtSignal() # void categoryAdded(const QPlaceCategoryamp;,const QStringamp;) - signal
1655     placeRemoved = pyqtSignal() # void placeRemoved(const QStringamp;) - signal
1656     placeUpdated = pyqtSignal() # void placeUpdated(const QStringamp;) - signal
1657     placeAdded = pyqtSignal() # void placeAdded(const QStringamp;) - signal
1658     error = pyqtSignal() # void error(QPlaceReply*,QPlaceReply::Error,const QStringamp; = QString()) - signal
1659     finished = pyqtSignal() # void finished(QPlaceReply*) - signal
1660     def matchingPlaces(self, request):
1661         '''QPlaceMatchReply QPlaceManager.matchingPlaces(QPlaceMatchRequest request)'''
1662         return QPlaceMatchReply()
1663     def compatiblePlace(self, place):
1664         '''QPlace QPlaceManager.compatiblePlace(QPlace place)'''
1665         return QPlace()
1666     def setLocales(self, locale):
1667         '''void QPlaceManager.setLocales(list-of-QLocale locale)'''
1668     def setLocale(self, locale):
1669         '''void QPlaceManager.setLocale(QLocale locale)'''
1670     def locales(self):
1671         '''list-of-QLocale QPlaceManager.locales()'''
1672         return [QLocale()]
1673     def childCategories(self, parentId = str()):
1674         '''list-of-QPlaceCategory QPlaceManager.childCategories(str parentId = str())'''
1675         return [QPlaceCategory()]
1676     def category(self, categoryId):
1677         '''QPlaceCategory QPlaceManager.category(str categoryId)'''
1678         return QPlaceCategory()
1679     def childCategoryIds(self, parentId = str()):
1680         '''list-of-str QPlaceManager.childCategoryIds(str parentId = str())'''
1681         return [str()]
1682     def parentCategoryId(self, categoryId):
1683         '''str QPlaceManager.parentCategoryId(str categoryId)'''
1684         return str()
1685     def initializeCategories(self):
1686         '''QPlaceReply QPlaceManager.initializeCategories()'''
1687         return QPlaceReply()
1688     def removeCategory(self, categoryId):
1689         '''QPlaceIdReply QPlaceManager.removeCategory(str categoryId)'''
1690         return QPlaceIdReply()
1691     def saveCategory(self, category, parentId = str()):
1692         '''QPlaceIdReply QPlaceManager.saveCategory(QPlaceCategory category, str parentId = str())'''
1693         return QPlaceIdReply()
1694     def removePlace(self, placeId):
1695         '''QPlaceIdReply QPlaceManager.removePlace(str placeId)'''
1696         return QPlaceIdReply()
1697     def savePlace(self, place):
1698         '''QPlaceIdReply QPlaceManager.savePlace(QPlace place)'''
1699         return QPlaceIdReply()
1700     def searchSuggestions(self, request):
1701         '''QPlaceSearchSuggestionReply QPlaceManager.searchSuggestions(QPlaceSearchRequest request)'''
1702         return QPlaceSearchSuggestionReply()
1703     def search(self, query):
1704         '''QPlaceSearchReply QPlaceManager.search(QPlaceSearchRequest query)'''
1705         return QPlaceSearchReply()
1706     def getPlaceContent(self, request):
1707         '''QPlaceContentReply QPlaceManager.getPlaceContent(QPlaceContentRequest request)'''
1708         return QPlaceContentReply()
1709     def getPlaceDetails(self, placeId):
1710         '''QPlaceDetailsReply QPlaceManager.getPlaceDetails(str placeId)'''
1711         return QPlaceDetailsReply()
1712     def managerVersion(self):
1713         '''int QPlaceManager.managerVersion()'''
1714         return int()
1715     def managerName(self):
1716         '''str QPlaceManager.managerName()'''
1717         return str()
1718 
1719 
1720 class QPlaceManagerEngine(QObject):
1721     """"""
1722     def __init__(self, parameters, parent = None):
1723         '''void QPlaceManagerEngine.__init__(dict-of-str-object parameters, QObject parent = None)'''
1724     def manager(self):
1725         '''QPlaceManager QPlaceManagerEngine.manager()'''
1726         return QPlaceManager()
1727     dataChanged = pyqtSignal() # void dataChanged() - signal
1728     categoryRemoved = pyqtSignal() # void categoryRemoved(const QStringamp;,const QStringamp;) - signal
1729     categoryUpdated = pyqtSignal() # void categoryUpdated(const QPlaceCategoryamp;,const QStringamp;) - signal
1730     categoryAdded = pyqtSignal() # void categoryAdded(const QPlaceCategoryamp;,const QStringamp;) - signal
1731     placeRemoved = pyqtSignal() # void placeRemoved(const QStringamp;) - signal
1732     placeUpdated = pyqtSignal() # void placeUpdated(const QStringamp;) - signal
1733     placeAdded = pyqtSignal() # void placeAdded(const QStringamp;) - signal
1734     error = pyqtSignal() # void error(QPlaceReply*,QPlaceReply::Error,const QStringamp; = QString()) - signal
1735     finished = pyqtSignal() # void finished(QPlaceReply*) - signal
1736     def matchingPlaces(self, request):
1737         '''QPlaceMatchReply QPlaceManagerEngine.matchingPlaces(QPlaceMatchRequest request)'''
1738         return QPlaceMatchReply()
1739     def compatiblePlace(self, original):
1740         '''QPlace QPlaceManagerEngine.compatiblePlace(QPlace original)'''
1741         return QPlace()
1742     def constructIconUrl(self, icon, size):
1743         '''QUrl QPlaceManagerEngine.constructIconUrl(QPlaceIcon icon, QSize size)'''
1744         return QUrl()
1745     def setLocales(self, locales):
1746         '''void QPlaceManagerEngine.setLocales(list-of-QLocale locales)'''
1747     def locales(self):
1748         '''list-of-QLocale QPlaceManagerEngine.locales()'''
1749         return [QLocale()]
1750     def childCategories(self, parentId):
1751         '''list-of-QPlaceCategory QPlaceManagerEngine.childCategories(str parentId)'''
1752         return [QPlaceCategory()]
1753     def category(self, categoryId):
1754         '''QPlaceCategory QPlaceManagerEngine.category(str categoryId)'''
1755         return QPlaceCategory()
1756     def childCategoryIds(self, categoryId):
1757         '''list-of-str QPlaceManagerEngine.childCategoryIds(str categoryId)'''
1758         return [str()]
1759     def parentCategoryId(self, categoryId):
1760         '''str QPlaceManagerEngine.parentCategoryId(str categoryId)'''
1761         return str()
1762     def initializeCategories(self):
1763         '''QPlaceReply QPlaceManagerEngine.initializeCategories()'''
1764         return QPlaceReply()
1765     def removeCategory(self, categoryId):
1766         '''QPlaceIdReply QPlaceManagerEngine.removeCategory(str categoryId)'''
1767         return QPlaceIdReply()
1768     def saveCategory(self, category, parentId):
1769         '''QPlaceIdReply QPlaceManagerEngine.saveCategory(QPlaceCategory category, str parentId)'''
1770         return QPlaceIdReply()
1771     def removePlace(self, placeId):
1772         '''QPlaceIdReply QPlaceManagerEngine.removePlace(str placeId)'''
1773         return QPlaceIdReply()
1774     def savePlace(self, place):
1775         '''QPlaceIdReply QPlaceManagerEngine.savePlace(QPlace place)'''
1776         return QPlaceIdReply()
1777     def searchSuggestions(self, request):
1778         '''QPlaceSearchSuggestionReply QPlaceManagerEngine.searchSuggestions(QPlaceSearchRequest request)'''
1779         return QPlaceSearchSuggestionReply()
1780     def search(self, request):
1781         '''QPlaceSearchReply QPlaceManagerEngine.search(QPlaceSearchRequest request)'''
1782         return QPlaceSearchReply()
1783     def getPlaceContent(self, request):
1784         '''QPlaceContentReply QPlaceManagerEngine.getPlaceContent(QPlaceContentRequest request)'''
1785         return QPlaceContentReply()
1786     def getPlaceDetails(self, placeId):
1787         '''QPlaceDetailsReply QPlaceManagerEngine.getPlaceDetails(str placeId)'''
1788         return QPlaceDetailsReply()
1789     def managerVersion(self):
1790         '''int QPlaceManagerEngine.managerVersion()'''
1791         return int()
1792     def managerName(self):
1793         '''str QPlaceManagerEngine.managerName()'''
1794         return str()
1795 
1796 
1797 class QPlaceMatchReply(QPlaceReply):
1798     """"""
1799     def __init__(self, parent = None):
1800         '''void QPlaceMatchReply.__init__(QObject parent = None)'''
1801     def setRequest(self, request):
1802         '''void QPlaceMatchReply.setRequest(QPlaceMatchRequest request)'''
1803     def setPlaces(self, results):
1804         '''void QPlaceMatchReply.setPlaces(list-of-QPlace results)'''
1805     def request(self):
1806         '''QPlaceMatchRequest QPlaceMatchReply.request()'''
1807         return QPlaceMatchRequest()
1808     def places(self):
1809         '''list-of-QPlace QPlaceMatchReply.places()'''
1810         return [QPlace()]
1811     def type(self):
1812         '''QPlaceReply.Type QPlaceMatchReply.type()'''
1813         return QPlaceReply.Type()
1814 
1815 
1816 class QPlaceMatchRequest():
1817     """"""
1818     AlternativeId = None # str - member
1819     def __init__(self):
1820         '''void QPlaceMatchRequest.__init__()'''
1821     def __init__(self, other):
1822         '''void QPlaceMatchRequest.__init__(QPlaceMatchRequest other)'''
1823     def clear(self):
1824         '''void QPlaceMatchRequest.clear()'''
1825     def setParameters(self, parameters):
1826         '''void QPlaceMatchRequest.setParameters(dict-of-str-object parameters)'''
1827     def parameters(self):
1828         '''dict-of-str-object QPlaceMatchRequest.parameters()'''
1829         return {str():object()}
1830     def setResults(self, results):
1831         '''void QPlaceMatchRequest.setResults(list-of-QPlaceSearchResult results)'''
1832     def setPlaces(self, places):
1833         '''void QPlaceMatchRequest.setPlaces(list-of-QPlace places)'''
1834     def places(self):
1835         '''list-of-QPlace QPlaceMatchRequest.places()'''
1836         return [QPlace()]
1837     def __ne__(self, other):
1838         '''bool QPlaceMatchRequest.__ne__(QPlaceMatchRequest other)'''
1839         return bool()
1840     def __eq__(self, other):
1841         '''bool QPlaceMatchRequest.__eq__(QPlaceMatchRequest other)'''
1842         return bool()
1843 
1844 
1845 class QPlaceSearchResult():
1846     """"""
1847     # Enum QPlaceSearchResult.SearchResultType
1848     UnknownSearchResult = 0
1849     PlaceResult = 0
1850     ProposedSearchResult = 0
1851 
1852     def __init__(self):
1853         '''void QPlaceSearchResult.__init__()'''
1854     def __init__(self, other):
1855         '''void QPlaceSearchResult.__init__(QPlaceSearchResult other)'''
1856     def setIcon(self, icon):
1857         '''void QPlaceSearchResult.setIcon(QPlaceIcon icon)'''
1858     def icon(self):
1859         '''QPlaceIcon QPlaceSearchResult.icon()'''
1860         return QPlaceIcon()
1861     def setTitle(self, title):
1862         '''void QPlaceSearchResult.setTitle(str title)'''
1863     def title(self):
1864         '''str QPlaceSearchResult.title()'''
1865         return str()
1866     def type(self):
1867         '''QPlaceSearchResult.SearchResultType QPlaceSearchResult.type()'''
1868         return QPlaceSearchResult.SearchResultType()
1869     def __ne__(self, other):
1870         '''bool QPlaceSearchResult.__ne__(QPlaceSearchResult other)'''
1871         return bool()
1872     def __eq__(self, other):
1873         '''bool QPlaceSearchResult.__eq__(QPlaceSearchResult other)'''
1874         return bool()
1875 
1876 
1877 class QPlaceProposedSearchResult(QPlaceSearchResult):
1878     """"""
1879     def __init__(self):
1880         '''void QPlaceProposedSearchResult.__init__()'''
1881     def __init__(self, other):
1882         '''void QPlaceProposedSearchResult.__init__(QPlaceSearchResult other)'''
1883     def __init__(self):
1884         '''QPlaceProposedSearchResult QPlaceProposedSearchResult.__init__()'''
1885         return QPlaceProposedSearchResult()
1886     def setSearchRequest(self, request):
1887         '''void QPlaceProposedSearchResult.setSearchRequest(QPlaceSearchRequest request)'''
1888     def searchRequest(self):
1889         '''QPlaceSearchRequest QPlaceProposedSearchResult.searchRequest()'''
1890         return QPlaceSearchRequest()
1891 
1892 
1893 class QPlaceRatings():
1894     """"""
1895     def __init__(self):
1896         '''void QPlaceRatings.__init__()'''
1897     def __init__(self, other):
1898         '''void QPlaceRatings.__init__(QPlaceRatings other)'''
1899     def isEmpty(self):
1900         '''bool QPlaceRatings.isEmpty()'''
1901         return bool()
1902     def setMaximum(self, max):
1903         '''void QPlaceRatings.setMaximum(float max)'''
1904     def maximum(self):
1905         '''float QPlaceRatings.maximum()'''
1906         return float()
1907     def setCount(self, count):
1908         '''void QPlaceRatings.setCount(int count)'''
1909     def count(self):
1910         '''int QPlaceRatings.count()'''
1911         return int()
1912     def setAverage(self, average):
1913         '''void QPlaceRatings.setAverage(float average)'''
1914     def average(self):
1915         '''float QPlaceRatings.average()'''
1916         return float()
1917     def __ne__(self, other):
1918         '''bool QPlaceRatings.__ne__(QPlaceRatings other)'''
1919         return bool()
1920     def __eq__(self, other):
1921         '''bool QPlaceRatings.__eq__(QPlaceRatings other)'''
1922         return bool()
1923 
1924 
1925 class QPlaceResult(QPlaceSearchResult):
1926     """"""
1927     def __init__(self):
1928         '''void QPlaceResult.__init__()'''
1929     def __init__(self, other):
1930         '''void QPlaceResult.__init__(QPlaceSearchResult other)'''
1931     def __init__(self):
1932         '''QPlaceResult QPlaceResult.__init__()'''
1933         return QPlaceResult()
1934     def setSponsored(self, sponsored):
1935         '''void QPlaceResult.setSponsored(bool sponsored)'''
1936     def isSponsored(self):
1937         '''bool QPlaceResult.isSponsored()'''
1938         return bool()
1939     def setPlace(self, place):
1940         '''void QPlaceResult.setPlace(QPlace place)'''
1941     def place(self):
1942         '''QPlace QPlaceResult.place()'''
1943         return QPlace()
1944     def setDistance(self, distance):
1945         '''void QPlaceResult.setDistance(float distance)'''
1946     def distance(self):
1947         '''float QPlaceResult.distance()'''
1948         return float()
1949 
1950 
1951 class QPlaceReview(QPlaceContent):
1952     """"""
1953     def __init__(self):
1954         '''void QPlaceReview.__init__()'''
1955     def __init__(self, other):
1956         '''void QPlaceReview.__init__(QPlaceContent other)'''
1957     def __init__(self):
1958         '''QPlaceReview QPlaceReview.__init__()'''
1959         return QPlaceReview()
1960     def setTitle(self, data):
1961         '''void QPlaceReview.setTitle(str data)'''
1962     def title(self):
1963         '''str QPlaceReview.title()'''
1964         return str()
1965     def setReviewId(self, identifier):
1966         '''void QPlaceReview.setReviewId(str identifier)'''
1967     def reviewId(self):
1968         '''str QPlaceReview.reviewId()'''
1969         return str()
1970     def setRating(self, data):
1971         '''void QPlaceReview.setRating(float data)'''
1972     def rating(self):
1973         '''float QPlaceReview.rating()'''
1974         return float()
1975     def setLanguage(self, data):
1976         '''void QPlaceReview.setLanguage(str data)'''
1977     def language(self):
1978         '''str QPlaceReview.language()'''
1979         return str()
1980     def setText(self, text):
1981         '''void QPlaceReview.setText(str text)'''
1982     def text(self):
1983         '''str QPlaceReview.text()'''
1984         return str()
1985     def setDateTime(self, dt):
1986         '''void QPlaceReview.setDateTime(QDateTime dt)'''
1987     def dateTime(self):
1988         '''QDateTime QPlaceReview.dateTime()'''
1989         return QDateTime()
1990 
1991 
1992 class QPlaceSearchReply(QPlaceReply):
1993     """"""
1994     def __init__(self, parent = None):
1995         '''void QPlaceSearchReply.__init__(QObject parent = None)'''
1996     def setNextPageRequest(self, next):
1997         '''void QPlaceSearchReply.setNextPageRequest(QPlaceSearchRequest next)'''
1998     def setPreviousPageRequest(self, previous):
1999         '''void QPlaceSearchReply.setPreviousPageRequest(QPlaceSearchRequest previous)'''
2000     def setRequest(self, request):
2001         '''void QPlaceSearchReply.setRequest(QPlaceSearchRequest request)'''
2002     def setResults(self, results):
2003         '''void QPlaceSearchReply.setResults(list-of-QPlaceSearchResult results)'''
2004     def nextPageRequest(self):
2005         '''QPlaceSearchRequest QPlaceSearchReply.nextPageRequest()'''
2006         return QPlaceSearchRequest()
2007     def previousPageRequest(self):
2008         '''QPlaceSearchRequest QPlaceSearchReply.previousPageRequest()'''
2009         return QPlaceSearchRequest()
2010     def request(self):
2011         '''QPlaceSearchRequest QPlaceSearchReply.request()'''
2012         return QPlaceSearchRequest()
2013     def results(self):
2014         '''list-of-QPlaceSearchResult QPlaceSearchReply.results()'''
2015         return [QPlaceSearchResult()]
2016     def type(self):
2017         '''QPlaceReply.Type QPlaceSearchReply.type()'''
2018         return QPlaceReply.Type()
2019 
2020 
2021 class QPlaceSearchRequest():
2022     """"""
2023     # Enum QPlaceSearchRequest.RelevanceHint
2024     UnspecifiedHint = 0
2025     DistanceHint = 0
2026     LexicalPlaceNameHint = 0
2027 
2028     def __init__(self):
2029         '''void QPlaceSearchRequest.__init__()'''
2030     def __init__(self, other):
2031         '''void QPlaceSearchRequest.__init__(QPlaceSearchRequest other)'''
2032     def clear(self):
2033         '''void QPlaceSearchRequest.clear()'''
2034     def setLimit(self, limit):
2035         '''void QPlaceSearchRequest.setLimit(int limit)'''
2036     def limit(self):
2037         '''int QPlaceSearchRequest.limit()'''
2038         return int()
2039     def setRelevanceHint(self, hint):
2040         '''void QPlaceSearchRequest.setRelevanceHint(QPlaceSearchRequest.RelevanceHint hint)'''
2041     def relevanceHint(self):
2042         '''QPlaceSearchRequest.RelevanceHint QPlaceSearchRequest.relevanceHint()'''
2043         return QPlaceSearchRequest.RelevanceHint()
2044     def setVisibilityScope(self, visibilityScopes):
2045         '''void QPlaceSearchRequest.setVisibilityScope(QLocation.VisibilityScope visibilityScopes)'''
2046     def visibilityScope(self):
2047         '''QLocation.VisibilityScope QPlaceSearchRequest.visibilityScope()'''
2048         return QLocation.VisibilityScope()
2049     def setSearchContext(self, context):
2050         '''void QPlaceSearchRequest.setSearchContext(QVariant context)'''
2051     def searchContext(self):
2052         '''QVariant QPlaceSearchRequest.searchContext()'''
2053         return QVariant()
2054     def setRecommendationId(self, recommendationId):
2055         '''void QPlaceSearchRequest.setRecommendationId(str recommendationId)'''
2056     def recommendationId(self):
2057         '''str QPlaceSearchRequest.recommendationId()'''
2058         return str()
2059     def setSearchArea(self, area):
2060         '''void QPlaceSearchRequest.setSearchArea(QGeoShape area)'''
2061     def searchArea(self):
2062         '''QGeoShape QPlaceSearchRequest.searchArea()'''
2063         return QGeoShape()
2064     def setCategories(self, categories):
2065         '''void QPlaceSearchRequest.setCategories(list-of-QPlaceCategory categories)'''
2066     def setCategory(self, category):
2067         '''void QPlaceSearchRequest.setCategory(QPlaceCategory category)'''
2068     def categories(self):
2069         '''list-of-QPlaceCategory QPlaceSearchRequest.categories()'''
2070         return [QPlaceCategory()]
2071     def setSearchTerm(self, term):
2072         '''void QPlaceSearchRequest.setSearchTerm(str term)'''
2073     def searchTerm(self):
2074         '''str QPlaceSearchRequest.searchTerm()'''
2075         return str()
2076     def __ne__(self, other):
2077         '''bool QPlaceSearchRequest.__ne__(QPlaceSearchRequest other)'''
2078         return bool()
2079     def __eq__(self, other):
2080         '''bool QPlaceSearchRequest.__eq__(QPlaceSearchRequest other)'''
2081         return bool()
2082 
2083 
2084 class QPlaceSearchSuggestionReply(QPlaceReply):
2085     """"""
2086     def __init__(self, parent = None):
2087         '''void QPlaceSearchSuggestionReply.__init__(QObject parent = None)'''
2088     def setSuggestions(self, suggestions):
2089         '''void QPlaceSearchSuggestionReply.setSuggestions(list-of-str suggestions)'''
2090     def type(self):
2091         '''QPlaceReply.Type QPlaceSearchSuggestionReply.type()'''
2092         return QPlaceReply.Type()
2093     def suggestions(self):
2094         '''list-of-str QPlaceSearchSuggestionReply.suggestions()'''
2095         return [str()]
2096 
2097 
2098 class QPlaceSupplier():
2099     """"""
2100     def __init__(self):
2101         '''void QPlaceSupplier.__init__()'''
2102     def __init__(self, other):
2103         '''void QPlaceSupplier.__init__(QPlaceSupplier other)'''
2104     def isEmpty(self):
2105         '''bool QPlaceSupplier.isEmpty()'''
2106         return bool()
2107     def setIcon(self, icon):
2108         '''void QPlaceSupplier.setIcon(QPlaceIcon icon)'''
2109     def icon(self):
2110         '''QPlaceIcon QPlaceSupplier.icon()'''
2111         return QPlaceIcon()
2112     def setUrl(self, data):
2113         '''void QPlaceSupplier.setUrl(QUrl data)'''
2114     def url(self):
2115         '''QUrl QPlaceSupplier.url()'''
2116         return QUrl()
2117     def setSupplierId(self, identifier):
2118         '''void QPlaceSupplier.setSupplierId(str identifier)'''
2119     def supplierId(self):
2120         '''str QPlaceSupplier.supplierId()'''
2121         return str()
2122     def setName(self, data):
2123         '''void QPlaceSupplier.setName(str data)'''
2124     def name(self):
2125         '''str QPlaceSupplier.name()'''
2126         return str()
2127     def __ne__(self, other):
2128         '''bool QPlaceSupplier.__ne__(QPlaceSupplier other)'''
2129         return bool()
2130     def __eq__(self, other):
2131         '''bool QPlaceSupplier.__eq__(QPlaceSupplier other)'''
2132         return bool()
2133 
2134 
2135 class QPlaceUser():
2136     """"""
2137     def __init__(self):
2138         '''void QPlaceUser.__init__()'''
2139     def __init__(self, other):
2140         '''void QPlaceUser.__init__(QPlaceUser other)'''
2141     def setName(self, name):
2142         '''void QPlaceUser.setName(str name)'''
2143     def name(self):
2144         '''str QPlaceUser.name()'''
2145         return str()
2146     def setUserId(self, identifier):
2147         '''void QPlaceUser.setUserId(str identifier)'''
2148     def userId(self):
2149         '''str QPlaceUser.userId()'''
2150         return str()
2151     def __ne__(self, other):
2152         '''bool QPlaceUser.__ne__(QPlaceUser other)'''
2153         return bool()
2154     def __eq__(self, other):
2155         '''bool QPlaceUser.__eq__(QPlaceUser other)'''
2156         return bool()
2157 
2158