00001 /** @file tcl/stdconversions.h tcl conversions for std::string and 00002 other std library classes */ 00003 00004 /////////////////////////////////////////////////////////////////////// 00005 // 00006 // Copyright (c) 2005-2007 University of Southern California 00007 // Rob Peters <rjpeters at usc dot edu> 00008 // 00009 // created: Sun Jun 26 12:34:02 2005 00010 // commit: $Id: stdconversions.h 11876 2009-10-22 15:53:06Z icore $ 00011 // $HeadURL: svn://isvn.usc.edu/software/invt/trunk/saliency/src/tcl/stdconversions.h $ 00012 // 00013 // -------------------------------------------------------------------- 00014 // 00015 // This file is part of GroovX 00016 // [http://ilab.usc.edu/rjpeters/groovx/] 00017 // 00018 // GroovX is free software; you can redistribute it and/or modify it 00019 // under the terms of the GNU General Public License as published by 00020 // the Free Software Foundation; either version 2 of the License, or 00021 // (at your option) any later version. 00022 // 00023 // GroovX is distributed in the hope that it will be useful, but 00024 // WITHOUT ANY WARRANTY; without even the implied warranty of 00025 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00026 // General Public License for more details. 00027 // 00028 // You should have received a copy of the GNU General Public License 00029 // along with GroovX; if not, write to the Free Software Foundation, 00030 // Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. 00031 // 00032 /////////////////////////////////////////////////////////////////////// 00033 00034 #ifndef GROOVX_TCL_STDCONVERSIONS_H_UTC20050628163220_DEFINED 00035 #define GROOVX_TCL_STDCONVERSIONS_H_UTC20050628163220_DEFINED 00036 00037 #include "rutz/fstring.h" 00038 #include "tcl/conversions.h" 00039 #include "tcl/obj.h" 00040 00041 #include <string> 00042 00043 namespace tcl 00044 { 00045 inline tcl::obj aux_convert_from(std::string s) 00046 { 00047 return convert_from<const char*>(s.c_str()); 00048 } 00049 00050 inline std::string aux_convert_to(Tcl_Obj* obj, std::string*) 00051 { 00052 return std::string(aux_convert_to(obj, (rutz::fstring*)0).c_str()); 00053 } 00054 } 00055 00056 static const char __attribute__((used)) vcid_groovx_tcl_stdconversions_h_utc20050628163220[] = "$Id: stdconversions.h 11876 2009-10-22 15:53:06Z icore $ $HeadURL: svn://isvn.usc.edu/software/invt/trunk/saliency/src/tcl/stdconversions.h $"; 00057 #endif // !GROOVX_TCL_STDCONVERSIONS_H_UTC20050628163220_DEFINED