24 lines
352 B
C++
24 lines
352 B
C++
/*
|
|
* ToolboxItem.h
|
|
*
|
|
* Created on: Apr 17, 2016
|
|
* Author: beckermj
|
|
*/
|
|
|
|
#ifndef TOOLBOXITEM_H_
|
|
#define TOOLBOXITEM_H_
|
|
|
|
namespace UniversalEditor {
|
|
namespace UserInterface {
|
|
|
|
class ToolboxItem {
|
|
public:
|
|
ToolboxItem();
|
|
virtual ~ToolboxItem();
|
|
};
|
|
|
|
} /* namespace UserInterface */
|
|
} /* namespace UniversalEditor */
|
|
|
|
#endif /* TOOLBOXITEM_H_ */
|