Skip to content
Snippets Groups Projects
Select Git revision
  • 90c65fb0be4aa2898aeac5d72d70dbb10557c30f
  • master default
  • cmake_fixes
  • pulls/1772757862/750
  • copilot/fix-770
  • windows_ci_static
  • c_link
  • cpack
  • windows_ci
  • cert_pk_id
  • proxy_push_result
  • cnode_put_id
  • update-windows-build
  • proxy
  • resubscribe_on_token_change
  • actions
  • client_mode
  • llhttp
  • search_node_add
  • crypto_aes_gcm_argon2
  • ios_notifications
  • v3.4.0
  • v3.3.1
  • v3.3.1rc1
  • v3.3.1rc2
  • v3.3.0
  • v3.2.0
  • v3.1.11
  • v3.1.10
  • v3.1.9
  • v3.1.8.2
  • v3.1.8.1
  • v3.1.8
  • v3.1.7
  • v3.1.6
  • v3.1.5
  • v3.1.4
  • v3.1.3
  • v3.1.2
  • v3.1
  • v3.0.1
41 results

dht_proxy_client.cpp

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    NonCopyable.hpp 1.42 KiB
    /*
     *    Copyright (c) <2002-2004> <Jean-Philippe Barrette-LaPierre>
     *    
     *    Permission is hereby granted, free of charge, to any person obtaining
     *    a copy of this software and associated documentation files 
     *    (cURLpp), to deal in the Software without restriction, 
     *    including without limitation the rights to use, copy, modify, merge,
     *    publish, distribute, sublicense, and/or sell copies of the Software,
     *    and to permit persons to whom the Software is furnished to do so, 
     *    subject to the following conditions:
     *    
     *    The above copyright notice and this permission notice shall be included
     *    in all copies or substantial portions of the Software.
     *    
     *    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
     *    OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
     *    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 
     *    IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY 
     *    CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 
     *    TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
     *    SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
     */
    
    #ifndef UTILSPP_NONCOPYABLE_HPP
    #define UTILSPP_NONCOPYABLE_HPP
    
    namespace utilspp
    {
       class NonCopyable
       {
          public:
             NonCopyable()
             {}
    
          private:
             NonCopyable(const NonCopyable&)
             {}
       };
    }
    
    #endif