http://en.wikipedia.org/wiki/C++11#Hash_tables
- Category Archives 비공개
-
-
INI Reader / Writer Class for MFC and ANSI C++ ( Windows Linux )
http://www.codeproject.com/Articles/12914/INI-Reader-Writer-Class-for-MFC-and-ANSI-C-Windows
-
Using the WebBrowser Control from C/C++
Using the WebBrowser Control from C/C++ This section describes some of the common implementations of the WebBrowser control, including: Adding Internet browsing functionality to your applicatio…
-
std::string 다루기.. ( 찾기, 공백제거 등등)
문자열 string #include “StdAfx.h” #include “StringTest.h” #include <algorithm> //transform 사용 #include <functional> //bind1st using std::string; // 이렇게 지정해준다. StringTe…
-
MFC / C++로 특정 사이트 가져와서 분석 하기 소스
#include <stdio.h> #include <windows.h> #include <wininet.h> #include <string> #include <comdef.h> #include <mshtml.h> #import <mshtml.tlb> no_auto_exclude #p…
-
Handling HTML Element Events
http://msdn.microsoft.com/en-us/library/bb508508(v=vs.85).aspx Handling HTML Element Events 9 out of 10 rated this helpful – Rate this topic The HTMLElementEvents2 interface is an event sink int…
-
VARIANT to std::string
Here’s one way, not necessarily the best. In general, std::string doesn’t play very well with VARIANT. #include <comutil.h> #include <string> std::string from_variant(VARIANT…
-
BSTR – char*간의 변환 및 BSTR에 대해…
BSTR – char*간의 변환 #include <afxconv.h>void BSTRtoCHAR(char *Msg[], const BSTR conv) { USES_CONVERSION; strcpy( *Msg, OLE2T(conv) ); }void CHARtoBSTR( BSTR *Msg, const char *conv ) { USES_C…
-
UTF-8 인코딩된 파일 읽고 EUC-KR 변경 encoded file read
package com.javawide.files; import java.io.*; public class UTF8Reader { public static void main(String[] args) { UTF8Reader reader = new UTF8Reader(); try { String utf8String = reader.readFully(…