| SOL9 2.0 Class: ButtonGadget |
| SOL9 C++ Class Library | SOL9 Samples | SOL9 Tutorial | SOL9 FAQ | SOL9 ClassTree |
/*
* ButtonGadget.h
* Copyright (c) 2011 Antillia.com TOSHIYUKI ARAI. ALL RIGHTS RESERVED.
*/
// SOL++2000
#pragma once
#include <sol\LabelGadget.h>
namespace SOL {
class ButtonGadget :public LabelGadget {
public:
ButtonGadget(View* parent, const TCHAR* name, Args& args)
:LabelGadget(parent, name, args)
{
// For future extension.
}
};
}
#endif
|