3.0
Last change
on this file since 71:415b45c71663 was
71:415b45c71663,
checked in by Sämy Zehnder <saemy.zehnder@…>, 12 years ago
|
- Reorganized all the libraries. libinterfaces and libgateways are removed now and libdatatypes contains now all these files.
|
File size:
367 bytes
|
Line | |
---|
1 | /* |
---|
2 | * BusinessFactory.h |
---|
3 | * |
---|
4 | * Created on: May 3, 2009 |
---|
5 | * Author: saemy |
---|
6 | */ |
---|
7 | |
---|
8 | #ifndef BUSINESSFACTORY_H_ |
---|
9 | #define BUSINESSFACTORY_H_ |
---|
10 | |
---|
11 | class BusinessFactory { |
---|
12 | |
---|
13 | public: |
---|
14 | static BusinessFactory* instance(); |
---|
15 | |
---|
16 | protected: |
---|
17 | BusinessFactory(){}; |
---|
18 | virtual ~BusinessFactory(){}; |
---|
19 | |
---|
20 | private: |
---|
21 | static BusinessFactory* instance_; |
---|
22 | |
---|
23 | }; |
---|
24 | |
---|
25 | #endif /* BUSINESSFACTORY_H_ */ |
---|
Note: See
TracBrowser
for help on using the repository browser.