OpenTwin 0.1
OpenTwin
 
Loading...
Searching...
No Matches
Factory.h
Go to the documentation of this file.
1#pragma once
2
3#include "ClassFactory.h"
4
5class Factory
6{
7public:
8 Factory() {};
9 ~Factory() {};
10
11 static ClassFactory& getClassFactory() { return classFactory; }
12
13private:
14 static ClassFactory classFactory;
15};
Definition Factory.h:6
~Factory()
Definition Factory.h:9
Factory()
Definition Factory.h:8
static ClassFactory & getClassFactory()
Definition Factory.h:11