このページ上に記載されている各コードのライセンスはパブリックドメインとする
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*---------------------------------------------------------------------------- | |
| プログラム名:Template | |
| バージョン:1.0.1.0 | |
| プログラム概要: | |
| -------------------------------------------------------------------------------- | |
| */ | |
| /*-----------------------インクルード部------------------------*/ | |
| #include <windows.h> | |
| #include <cstdio> | |
| /*------------------------------------------------------------*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Collections.ObjectModel; | |
| using System.Data; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace hirosof.Application.Process { | |
| using CommandLineNamedParameterList = List<CommandLineNamedParameterItem>; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #pragma once | |
| #include <limits> | |
| #include <stdexcept> | |
| template <typename T> class GeneralCounter { | |
| private: | |
| const bool m_is_signed_type = std::numeric_limits<T>::is_signed; | |
| T m_start; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #pragma once | |
| #include <vector> | |
| #include <string> | |
| #include <unordered_map> | |
| #include <sstream> | |
| template <typename char_type> class CCommandLineParserType { | |
| public: | |
| using String = std::basic_string<char_type>; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <Windows.h> | |
| #include <vector> | |
| #pragma comment(lib,"winmm.lib") | |
| #define LOOPS 1000000 | |
| void NormalValueTest ( void ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <Windows.h> | |
| #include <locale.h> | |
| #include <Shlobj.h> | |
| #include <Shobjidl.h> | |
| #include <KnownFolders.h> | |
| void HSOpenFileDialog ( void ); | |
| int main ( void ) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*---------------------------------------------------------------------------- | |
| プログラム名:Template | |
| バージョン:1.0.1.0 | |
| プログラム概要: | |
| 開発言語:Microsoft Visual C++ 2015 | |
| 統合開発環境:Microsoft Visual Studio 2015 Community Edition | |
| 開発開始日: | |
| 最終更新日: | |
| ------------------------------------------------------------------------------- | |
| 更新日一覧 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 作成する画像の幅を入力してください | |
| 48 | |
| 作成する画像の高さを入力してください | |
| 48 | |
| <<グレイスケール系の画像作成開始>> | |
| [単色画像作成開始] | |
| SaveImages\TextureMaker_Generate[48x48]\GrayScale\Single\mono_000[48x48].pngを作成しています。 | |
| SaveImages\TextureMaker_Generate[48x48]\GrayScale\Single\mono_016[48x48].pngを作成しています。 | |
| SaveImages\TextureMaker_Generate[48x48]\GrayScale\Single\mono_032[48x48].pngを作成しています。 | |
| SaveImages\TextureMaker_Generate[48x48]\GrayScale\Single\mono_048[48x48].pngを作成しています。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| 乱数精度テスト | |
| */ | |
| // インクルード部 | |
| #include <iostream> | |
| #include <cstdio> | |
| #include <random> | |
| #include <cstdlib> | |
| #include <ctime> | |
| #include "CHSRandom.hpp" //乱数アルゴリズムxorshiftを用いた自作乱数クラス |