69936e7e81
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@35 7ec92016-0320-0410-acc4-a06ded1c099a
21 lines
No EOL
281 B
C++
21 lines
No EOL
281 B
C++
//
|
|
//Test the Thread components
|
|
// MKH
|
|
|
|
#include <Loki\Threads.h>
|
|
using namespace ::Loki;
|
|
|
|
#include <iostream>
|
|
using std::cout;
|
|
using std::endl;
|
|
|
|
namespace
|
|
{
|
|
}
|
|
|
|
extern void Test_Threads()
|
|
{
|
|
cout << "Testing Loki\\Threads" << endl;
|
|
SingleThreaded<void>();
|
|
cout << endl << endl;
|
|
} |