source: experimental/Threading/Threading/SimHost.h @ 425

Last change on this file since 425 was 425, checked in by Torben Dannhauer, 12 years ago
File size: 399 bytes
Line 
1#pragma once
2
3#include <vector>
4#include <osg/Referenced>
5#include <osg/ref_ptr>
6
7#include "ThreadedWorker.h"
8#include "IGConnector.h"
9
10
11class SimHost : public osg::Referenced
12{
13public:
14        SimHost();
15        ~SimHost();
16
17        void initialize();
18        void run();
19
20private:
21        std::vector<osg::ref_ptr<IGConnector> > _IGConnectors;
22        std::vector<osg::ref_ptr<ThreadedWorker> > _threadObjects;
23
24};
Note: See TracBrowser for help on using the repository browser.