TemplateView.h 341 B

12345678910111213141516171819
  1. /*
  2. * Copyright 2009-2010, Pier Luigi Fiorini. All rights reserved.
  3. * Distributed under the terms of the MIT License.
  4. */
  5. #ifndef _TEMPLATE_VIEW_H
  6. #define _TEMPLATE_VIEW_H
  7. #include <View.h>
  8. class TemplateView : public BView {
  9. public:
  10. TemplateView(const char* name);
  11. virtual void AttachedToWindow();
  12. };
  13. #endif // _TEMPLATE_VIEW_H