Skeleton includes emtpy implementations of application class structure. Source groups were added to CMakeLists to define filters in Visual Studio.
12 lines
92 B
C++
12 lines
92 B
C++
#ifndef VIEW_H
|
|
#define VIEW_H
|
|
|
|
class View
|
|
{
|
|
public:
|
|
virtual ~View();
|
|
};
|
|
|
|
|
|
#endif // VIEW_H
|