1///////////////////////////////////////////////////////////////////////////////
2// Name:        wx/cocoa/NSPanel.h
3// Purpose:     wxCocoaNSPanel class
4// Author:      David Elliott
5// Modified by:
6// Created:     2003/03/16
7// RCS-ID:      $Id: NSPanel.h 42046 2006-10-16 09:30:01Z ABX $
8// Copyright:   (c) 2003 David Elliott
9// Licence:     wxWindows licence
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef __WX_COCOA_NSPANEL_H__
13#define __WX_COCOA_NSPANEL_H__
14
15#include "wx/hashmap.h"
16#include "wx/cocoa/ObjcAssociate.h"
17
18WX_DECLARE_OBJC_HASHMAP(NSPanel);
19
20class wxCocoaNSPanel
21{
22    WX_DECLARE_OBJC_INTERFACE(NSPanel)
23};
24
25#endif // _WX_COCOA_NSPANEL_H_
26