summaryrefslogtreecommitdiffstats
path: root/src/AboutDlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/AboutDlg.cpp')
-rw-r--r--src/AboutDlg.cpp50
1 files changed, 50 insertions, 0 deletions
diff --git a/src/AboutDlg.cpp b/src/AboutDlg.cpp
new file mode 100644
index 0000000..176a869
--- /dev/null
+++ b/src/AboutDlg.cpp
@@ -0,0 +1,50 @@
+//******************************************************************************
+// MIDIシーケンサーソフト『世界樹』
+// ヴァージョン情報ダイアログクラス
+// (C)2002-2010 おーぷんMIDIぷろじぇくと/くず
+//******************************************************************************
+
+/* This library is free software; you can redistribute it and/or */
+/* modify it under the terms of the GNU Lesser General Public */
+/* License as published by the Free Software Foundation; either */
+/* version 2.1 of the License, or (at your option) any later version. */
+
+/* This library is distributed in the hope that it will be useful, */
+/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
+/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU */
+/* Lesser General Public License for more details. */
+
+/* You should have received a copy of the GNU Lesser General Public */
+/* License along with this library; if not, write to the Free Software */
+/* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+
+#include "winver.h"
+#include <afxwin.h>
+#include "resource.h"
+#include "AboutDlg.h"
+
+//------------------------------------------------------------------------------
+// 構築と破壊
+//------------------------------------------------------------------------------
+
+// コンストラクタ
+CAboutDlg::CAboutDlg () : CDialog (CAboutDlg::IDD) {
+
+}
+
+//------------------------------------------------------------------------------
+// オーバーライド
+//------------------------------------------------------------------------------
+
+// データエクスチェンジ
+void CAboutDlg::DoDataExchange (CDataExchange* pDX) {
+ CDialog::DoDataExchange (pDX);
+}
+
+//------------------------------------------------------------------------------
+// メッセージマップ
+//------------------------------------------------------------------------------
+
+BEGIN_MESSAGE_MAP (CAboutDlg, CDialog)
+END_MESSAGE_MAP ()
+