source: trunk/Utilities/Miscellaneous/AngleBrackets/Angle.cpp @ 87

Last change on this file since 87 was 87, checked in by roman, 11 years ago
  • Property svn:keywords set to Id
File size: 427 bytes
Line 
1////////////////////////////////////////////////////////////
2// Copyright (C) Roman Ryltsov, 2012
3// Created by Roman Ryltsov roman@alax.info
4//
5// $Id: Angle.cpp 87 2012-08-11 08:52:54Z roman $
6
7#include "stdafx.h"
8
9template <INT t_nA> 
10class CB 
11{ 
12};
13
14template <typename CC> 
15class CD 
16{ 
17};
18
19class CE :
20        public CD<CB<1> >
21{
22public:
23        void G()
24        {
25        }
26        void H()
27        {
28        }
29};
30
31int _tmain(int argc, _TCHAR* argv[])
32{
33        CE E;
34        return 0;
35}
36
Note: See TracBrowser for help on using the repository browser.