Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Side by Side Diff: swig/Lib/python/std_vector.i

Issue 553095: Checkin swig binaries for win, linux and Mac... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/
Patch Set: '' Created 10 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « swig/Lib/python/std_string.i ('k') | swig/Lib/python/std_vectora.i » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 Vectors
3 */
4
5 %fragment("StdVectorTraits","header",fragment="StdSequenceTraits")
6 %{
7 namespace swig {
8 template <class T>
9 struct traits_asptr<std::vector<T> > {
10 static int asptr(PyObject *obj, std::vector<T> **vec) {
11 return traits_asptr_stdseq<std::vector<T> >::asptr(obj, vec);
12 }
13 };
14
15 template <class T>
16 struct traits_from<std::vector<T> > {
17 static PyObject *from(const std::vector<T>& vec) {
18 return traits_from_stdseq<std::vector<T> >::from(vec);
19 }
20 };
21 }
22 %}
23
24 #define %swig_vector_methods(Type...) %swig_sequence_methods(Type)
25 #define %swig_vector_methods_val(Type...) %swig_sequence_methods_val(Type);
26
27 %include <std/std_vector.i>
OLDNEW
« no previous file with comments | « swig/Lib/python/std_string.i ('k') | swig/Lib/python/std_vectora.i » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698