git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1220 a95241bf-73f2-0310-859d-f6bbb57e9c96
23 lines
503 B
C++
23 lines
503 B
C++
//****************************************************************************************
|
|
//
|
|
// File: BottomPrefsView.h
|
|
//
|
|
// Written by: Daniel Switkin
|
|
//
|
|
// Copyright 1999, Be Incorporated
|
|
//
|
|
//****************************************************************************************
|
|
|
|
#ifndef BOTTOMPREFSVIEW_H
|
|
#define BOTTOMPREFSVIEW_H
|
|
|
|
#include <interface/View.h>
|
|
|
|
class BottomPrefsView : public BView {
|
|
public:
|
|
BottomPrefsView(BRect rect, const char *name);
|
|
void Draw(BRect rect);
|
|
};
|
|
|
|
#endif
|