mirror of
https://github.com/wxWidgets/wxWidgets.git
synced 2026-03-23 18:54:01 +08:00
Having this line is not useful at all as it doesn't contain any information and shouldn't be filled in the future as git-shortlog can provide the information about people who changed the given file more more reliably than consulting the comments in any case. Keep the non-blank lines for historical purposes.
31 lines
908 B
C++
31 lines
908 B
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/dde.h
|
|
// Purpose: DDE base header
|
|
// Author: Julian Smart
|
|
// Created:
|
|
// Copyright: (c) Julian Smart
|
|
// Licence: wxWindows Licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_DDE_H_BASE_
|
|
#define _WX_DDE_H_BASE_
|
|
|
|
#include "wx/list.h"
|
|
|
|
class WXDLLIMPEXP_FWD_BASE wxDDEClient;
|
|
class WXDLLIMPEXP_FWD_BASE wxDDEServer;
|
|
class WXDLLIMPEXP_FWD_BASE wxDDEConnection;
|
|
|
|
WX_DECLARE_USER_EXPORTED_LIST(wxDDEClient, wxDDEClientList, WXDLLIMPEXP_BASE);
|
|
WX_DECLARE_USER_EXPORTED_LIST(wxDDEServer, wxDDEServerList, WXDLLIMPEXP_BASE);
|
|
WX_DECLARE_USER_EXPORTED_LIST(wxDDEConnection, wxDDEConnectionList, WXDLLIMPEXP_BASE);
|
|
|
|
#if defined(__WINDOWS__)
|
|
#include "wx/msw/dde.h"
|
|
#else
|
|
#error DDE is only supported under Windows
|
|
#endif
|
|
|
|
#endif
|
|
// _WX_DDE_H_BASE_
|