~ubuntu-branches/ubuntu/wily/sip4-qt3/wily

« back to all changes in this revision

Viewing changes to sipgen/sip.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2010-10-19 23:44:39 UTC
  • mfrom: (1.3.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20101019234439-1pzo6va0h8yx3bwn
Tags: 4.11.1-0ubuntu1
* New upstream release
* Add python 3 support
  - Add python3-all-dev, python3-all-dbg to build-dependencies
  - Add sipconfig_py3.py
  - Add rules to install sipconfig_py3.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
736
736
    codeBlock *initcode;                /* Initialisation code. */
737
737
    codeBlock *postinitcode;            /* Post-initialisation code. */
738
738
    codeBlock *unitcode;                /* Compilation unit code. */
 
739
    codeBlock *unitpostinccode;         /* Compilation unit post-include code. */
739
740
    int parts;                          /* The number of parts generated. */
740
741
    char *file;                         /* The filename. */
741
742
    qualDef *qualifiers;                /* The list of qualifiers. */
987
988
/* A class definition. */
988
989
 
989
990
typedef struct _classDef {
990
 
    int classflags;                     /* The class flags. */
 
991
    unsigned classflags;                /* The class flags. */
991
992
    int pyqt4_flags;                    /* The PyQt4 specific flags. */
992
993
    nameDef *pyname;                    /* The Python name. */
993
994
    ifaceFileDef *iff;                  /* The interface file. */
1159
1160
    opt_name_flag,
1160
1161
    dotted_name_flag,
1161
1162
    integer_flag,
 
1163
    opt_integer_flag,
1162
1164
    api_range_flag
1163
1165
} flagType;
1164
1166