| test | test2 |
|---|---|
| abc | hogehoge |
| test | test2 |
|---|
| #pragma once | |
| #include <iostream> | |
| namespace Mntone | |
| { | |
| // 3 次正方行列を扱うクラス | |
| template<typename T> | |
| class Matrix sealed | |
| { |
| using AsyncOAuth; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using Windows.Foundation; | |
| using Windows.Web.Http; | |
| using Windows.Web.Http.Headers; | |
| using Windows.Web.Http.Filters; |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using System.Windows; | |
| using System.Windows.Controls; | |
| using System.Windows.Media; | |
| using System.Windows.Media.Animation; | |
| using System.Windows.Media.Imaging; |
| using System; | |
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| using System.Linq; | |
| using System.Text; | |
| namespace CheckingPatternTest | |
| { | |
| class Program | |
| { |
| enum aac_id: unsigned | |
| { | |
| ai_mpeg4 = 0, | |
| ai_mpeg2 = 1, | |
| }; | |
| enum aac_protection_absent: unsigned | |
| { | |
| apa_protection = 0, | |
| apa_unprotection = 1, |
| _declspec( align( 1 ) ) | |
| class wave_header | |
| { | |
| public: | |
| wave_header( void ): | |
| format_size( 16 ), | |
| format_id( 1 ), | |
| channel( 1 ), | |
| sample_rate( 44100 ), | |
| bits_per_samples( 16 ), |
| _declspec( align( 1 ) ) | |
| class flv_header | |
| { | |
| public: | |
| flv_header( void ): | |
| version( 1 ) | |
| { | |
| memcpy( signature, "FLV", 3 ); | |
| } |
| package | |
| { | |
| import flash.display.*; | |
| import flash.events.*; | |
| import flash.net.*; | |
| import flash.text.engine.*; | |
| import flash.utils.*; | |
| /** | |
| * ... |