Skip to content

Instantly share code, notes, and snippets.

@KzoNag
Created July 24, 2013 10:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KzoNag/6069440 to your computer and use it in GitHub Desktop.
Save KzoNag/6069440 to your computer and use it in GitHub Desktop.
// 日本語のコメント入力するときに表示がおかしくなるね
// 確定するまで見えない状態になる 入力自体はできるけど
// テストクラス
class GistTest
{
public:
GistTest():m_val(0){} // コンストラクタ
~GistTest(){} // デストラクタ
// アクセッサ
int GetVal()const{ return m_val; }
void SetVal(const int _val){ m_val = _val; }
private:
// メンバ変数
int m_val;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment