2010-05-09 01:27:48 -05:00
|
|
|
/*
|
|
|
|
* Copyright 2009-2010, Pier Luigi Fiorini. All rights reserved.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
2021-06-18 01:13:02 -05:00
|
|
|
#ifndef _TEMPLATE_VIEW_H
|
|
|
|
#define _TEMPLATE_VIEW_H
|
2010-05-09 01:27:48 -05:00
|
|
|
|
|
|
|
#include <View.h>
|
|
|
|
|
2021-06-18 01:13:02 -05:00
|
|
|
|
2010-05-09 01:27:48 -05:00
|
|
|
const uint32 kChanged = 'CHGD';
|
|
|
|
|
2021-06-18 01:13:02 -05:00
|
|
|
|
|
|
|
class TemplateView : public BView {
|
2010-05-09 01:27:48 -05:00
|
|
|
public:
|
2021-06-18 01:13:02 -05:00
|
|
|
TemplateView(const char* name);
|
2010-05-09 01:27:48 -05:00
|
|
|
|
|
|
|
virtual void AttachedToWindow();
|
|
|
|
};
|
|
|
|
|
2021-06-18 01:13:02 -05:00
|
|
|
#endif // _TEMPLATE_VIEW_H
|