15 lines
295 B
C++
15 lines
295 B
C++
#ifndef BackGroundWidget_H_
|
|
#define BackGroundWidget_H_
|
|
|
|
#include <osgWidget/Widget>
|
|
#include <string>
|
|
|
|
class BackGroundWidget : public osgWidget::Widget
|
|
{
|
|
public:
|
|
BackGroundWidget(const std::string& name, float w, float h, const std::string& fileName);
|
|
~BackGroundWidget(void);
|
|
};
|
|
|
|
#endif
|