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

« back to all changes in this revision

Viewing changes to Lib/ruby/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:
135
135
                    $1 = 0;
136
136
            }
137
137
        }
 
138
        pair();
 
139
        pair(T first, U second);
 
140
        pair(const pair& p);
 
141
 
 
142
        template <class U1, class U2> pair(const pair<U1, U2> &p);
 
143
 
138
144
        T first;
139
145
        U second;
140
146
    };
251
257
                    $1 = 0;
252
258
            }
253
259
        }
 
260
        pair();
 
261
        pair(T first, U second);
 
262
        pair(const pair& p);
 
263
 
 
264
        template <class U1, class U2> pair(const pair<U1, U2> &p);
 
265
 
254
266
        T first;
255
267
        U second;
256
268
    };
368
380
                    $1 = 0;
369
381
            }
370
382
        }
 
383
        pair();
 
384
        pair(T first, U second);
 
385
        pair(const pair& p);
 
386
 
 
387
        template <class U1, class U2> pair(const pair<U1, U2> &p);
 
388
 
371
389
        T first;
372
390
        U second;
373
391
    };
474
492
                    $1 = 0;
475
493
            }
476
494
        }
 
495
        pair();
 
496
        pair(T first, U second);
 
497
        pair(const pair& p);
 
498
 
 
499
        template <class U1, class U2> pair(const pair<U1, U2> &p);
 
500
 
477
501
        T first;
478
502
        U second;
479
503
    };