Server IP : 172.67.216.182 / Your IP : 172.71.152.81 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/boost/boost_1_59_0/boost/ |
Upload File : |
// (C) Copyright Ronald Garcia 2002. Permission to copy, use, modify, sell and // distribute this software is granted provided this copyright notice appears // in all copies. This software is provided "as is" without express or implied // warranty, and with no claim as to its suitability for any purpose. // See http://www.boost.org/libs/utility/shared_container_iterator.html for documentation. #ifndef SHARED_CONTAINER_ITERATOR_RG08102002_HPP #define SHARED_CONTAINER_ITERATOR_RG08102002_HPP #include "boost/iterator_adaptors.hpp" #include "boost/shared_ptr.hpp" #include <utility> namespace boost { namespace iterators { template <typename Container> class shared_container_iterator : public iterator_adaptor< shared_container_iterator<Container>, typename Container::iterator> { typedef iterator_adaptor< shared_container_iterator<Container>, typename Container::iterator> super_t; typedef typename Container::iterator iterator_t; typedef boost::shared_ptr<Container> container_ref_t; container_ref_t container_ref; public: shared_container_iterator() { } shared_container_iterator(iterator_t const& x,container_ref_t const& c) : super_t(x), container_ref(c) { } }; template <typename Container> inline shared_container_iterator<Container> make_shared_container_iterator(typename Container::iterator iter, boost::shared_ptr<Container> const& container) { typedef shared_container_iterator<Container> iterator; return iterator(iter,container); } template <typename Container> inline std::pair< shared_container_iterator<Container>, shared_container_iterator<Container> > make_shared_container_range(boost::shared_ptr<Container> const& container) { return std::make_pair( make_shared_container_iterator(container->begin(),container), make_shared_container_iterator(container->end(),container)); } } // namespace iterators using iterators::shared_container_iterator; using iterators::make_shared_container_iterator; using iterators::make_shared_container_range; } // namespace boost #endif // SHARED_CONTAINER_ITERATOR_RG08102002_HPP