* removed paths in include directives * changed cmake to provide necessary header search paths * changed name of version.h to productVersion.h due to name conflict
15 lines
173 B
C++
15 lines
173 B
C++
#include "ViewLayout.h"
|
|
|
|
ViewLayout::ViewLayout()
|
|
{
|
|
}
|
|
|
|
ViewLayout::~ViewLayout()
|
|
{
|
|
}
|
|
|
|
View* ViewLayout::findFloatingView(const std::string& name) const
|
|
{
|
|
return nullptr;
|
|
}
|