1 /*!
2 	@file
3 	@author		Albert Semenov
4 	@date		07/2008
5 */
6 #include "Precompiled.h"
7 #include "ItemBoxWindow.h"
8 
9 namespace demo
10 {
11 
ItemBoxWindow(const std::string & _layout)12 	ItemBoxWindow::ItemBoxWindow(const std::string& _layout) :
13 		BaseLayout(_layout)
14 	{
15 		assignBase(mItemBox, "box_Items");
16 	}
17 
18 } // namespace demo
19