initial check in

This commit is contained in:
2012-12-06 21:43:03 +04:00
commit 4bc273824d
179 changed files with 29415 additions and 0 deletions

15
test_static_double2.cpp Normal file
View File

@@ -0,0 +1,15 @@
#include <iostream>
#include "test_static_double.h"
int main2 ( void )
{
A<int> a;
A<double> b;
std::cout << a._st_double << std::endl;
std::cout << b._st_double << std::endl;
return 0;
}