~ubuntu-branches/ubuntu/edgy/swig1.3/edgy

« back to all changes in this revision

Viewing changes to Lib/mzscheme/std_pair.i

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-12-05 01:16:04 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051205011604-ygx904it6413k3go
Tags: 1.3.27-1ubuntu1
Resynchronise with Debian again, for the new subversion packages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
116
116
                    $1 = 0;
117
117
            }
118
118
        }
 
119
        pair();
 
120
        pair(T first, U second);
 
121
        pair(const pair& p);
 
122
 
 
123
        template <class U1, class U2> pair(const pair<U1, U2> &p);
 
124
 
119
125
        T first;
120
126
        U second;
121
127
    };
212
218
                    $1 = 0;
213
219
            }
214
220
        }
 
221
        pair();
 
222
        pair(T first, U second);
 
223
        pair(const pair& p);
 
224
 
 
225
        template <class U1, class U2> pair(const pair<U1, U2> &p);
 
226
 
215
227
        T first;
216
228
        U second;
217
229
    };
307
319
                    $1 = 0;
308
320
            }
309
321
        }
 
322
        pair();
 
323
        pair(T first, U second);
 
324
        pair(const pair& p);
 
325
 
 
326
        template <class U1, class U2> pair(const pair<U1, U2> &p);
 
327
 
310
328
        T first;
311
329
        U second;
312
330
    };
396
414
                    $1 = 0;
397
415
            }
398
416
        }
 
417
        pair();
 
418
        pair(T first, U second);
 
419
        pair(const pair& p);
 
420
 
 
421
        template <class U1, class U2> pair(const pair<U1, U2> &p);
 
422
 
399
423
        T first;
400
424
        U second;
401
425
    };