util.hpp
上传用户:egreat
上传日期:2007-07-13
资源大小:29k
文件大小:0k
源码类别:

金融证券系统

开发平台:

Visual C++

  1. #ifndef _UTIL_HPP_
  2. #define _UTIL_HPP_
  3. #include <string>
  4. namespace StockMarket
  5. {
  6. extern void log_packet(const char* data, size_t len);
  7. extern void test_packet_from_file(const std::string& filename );
  8. extern  const uchar * stock_code_search (const uchar * str, unsigned int len);
  9. extern bool stockcode_is_valid(const uchar * s);
  10. extern bool is_file_exist(const std::string& filename);
  11. }
  12. #endif