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

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