mirror of
https://github.com/silverf0x/RpcView
synced 2026-06-08 17:26:38 +00:00
16 lines
262 B
C++
16 lines
262 B
C++
#ifndef _VIEW_FACTORY_H_
|
|
#define _VIEW_FACTORY_H_
|
|
|
|
#include "View.h"
|
|
|
|
using namespace std;
|
|
|
|
class ViewFactory_C
|
|
{
|
|
public:
|
|
ViewFactory_C();
|
|
void CreateViews(&vector<View_T*>);
|
|
ViewVisitor_C* CreateVisitor(ViewAction_T ViewAction);
|
|
};
|
|
|
|
#endif //_VIEW_FACTORY_H_
|