url_array_helper.h

来自「一个开源的网络开发库ACE」· C头文件 代码 · 共 41 行

H
41
字号
/* -*- C++ -*- */
// URL_Array_Helper.h,v 1.5 1999/01/20 20:47:15 levine Exp

// ============================================================================
//
// = LIBRARY
//    none
//
// = FILENAME
//    URL_Array_Helper.h
//
// = AUTHOR
//    Nanbor Wang
//
// ============================================================================

#ifndef ACE_URL_ARRAY_HELPER_H
#define ACE_URL_ARRAY_HELPER_H

// ### These template functions are probably named improperly.
// You should find some way to avoid name space polution.

template <class T>
size_t ace_array_size (const T &x);

template <class T>
size_t ace_array_encode (void *buf, const T &x);

template <class T>
size_t ace_array_decode (void *buf, T &x);

#if defined (ACE_TEMPLATES_REQUIRE_SOURCE)
#include "URL_Array_Helper.cpp"
#endif /* ACE_TEMPLATES_REQUIRE_SOURCE */

#if defined (ACE_TEMPLATES_REQUIRE_PRAGMA)
#pragma implementation ("URL_Array_Helper.cpp")
#endif /* ACE_TEMPLATES_REQUIRE_PRAGMA */

#endif /* ACE_URL_ARRAY_HELPER_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?