OSDN Git Service

DirectX11 SDK のTutorial07をほとんど真似て立方体を回してみた。
[shooting3/dxgi_test.git] / dxgi_test / jumplist.h
1 #pragma once
2 /*
3   ==============================================================================
4
5    This file is part of the mini timer
6    Copyright 2005-10 by Satoshi Fujiwara.
7
8    mini timer can be redistributed and/or modified under the terms of the
9    GNU General Public License, as published by the Free Software Foundation;
10    either version 2 of the License, or (at your option) any later version.
11
12    mini timer is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with mini timer; if not, visit www.gnu.org/licenses or write to the
19    Free Software Foundation, Inc., 59 Temple Place, Suite 330, 
20    Boston, MA 02111-1307 USA
21
22   ==============================================================================
23 */
24 namespace sf{
25 struct jumplist
26 {
27 public:
28   jumplist(){};
29   virtual ~jumplist(){};
30 };
31 }
32