/* * This file is part of RawTherapee. * * Copyright (c) 2004-2010 Gabor Horvath * * RawTherapee is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * RawTherapee is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with RawTherapee. If not, see . */ #include #include #include using namespace rtengine; using namespace rtengine::procparams; std::string* create_stdstring (char* txt); Glib::ustring* create_gustring (char* txt); void set_stdstring (std::string& s, char* txt); void set_gustring (Glib::ustring& s, char* txt); char* get_stdstring (std::string& s); char* get_gustring (Glib::ustring& s); void clear_double_vector (std::vector& d); void append_double_vector (std::vector& d, double dd); void resize_double_vector (std::vector& d, int size); double get_double_vector (std::vector& d, int i); void set_double_vector (std::vector& d, int i, double x); int size_double_vector (std::vector& d); void clear_gustring_vector (std::vector& d); void append_gustring_vector (std::vector& d, const Glib::ustring& dd); void resize_gustring_vector (std::vector& d, int size); Glib::ustring& get_gustring_vector (std::vector& d, int i); void set_gustring_vector (std::vector& d, int i, const Glib::ustring& x); int size_gustring_vector (std::vector& d); void clear_exifpair_vector (std::vector& d); void append_exifpair_vector (std::vector& d, const ExifPair& dd); void resize_exifpair_vector (std::vector& d, int size); ExifPair& get_exifpair_vector (std::vector& d, int i); void set_exifpair_vector (std::vector& d, int i, const ExifPair& x); int size_exifpair_vector (std::vector& d); void clear_iptcpair_vector (std::vector& d); void append_iptcpair_vector (std::vector& d, const IPTCPair& dd); void resize_iptcpair_vector (std::vector& d, int size); IPTCPair& get_iptcpair_vector (std::vector& d, int i); void set_iptcpair_vector (std::vector& d, int i, const IPTCPair& x); int size_iptcpair_vector (std::vector& d); int sizeof_stdstring (); int sizeof_gustring (); int sizeof_double_vector (); int sizeof_gustring_vector (); int sizeof_exifpair_vector (); int sizeof_iptcpair_vector ();