source: experimental/Threading/Threading/IGConnector.cpp @ 425

Last change on this file since 425 was 425, checked in by Torben Dannhauer, 11 years ago
File size: 369 bytes
Line 
1#include "IGConnector.h"
2
3#include <osg/Notify>
4#include "ThreadedWorker.h"
5
6
7IGConnector::IGConnector()
8{
9}
10
11IGConnector::~IGConnector()
12{
13}
14
15void IGConnector::operator()(ThreadedWorker* threadObject)
16{
17        OSG_ALWAYS<<"IGConnector running: ID "<<threadObject->getThreadId()<<std::endl;
18
19        // Place Holder
20        for(int i=0;i<100;i++)
21                OSG_ALWAYS<<"";
22
23}
Note: See TracBrowser for help on using the repository browser.