diff options
author | Matthew Newhook <matthew@zeroc.com> | 2015-03-18 12:58:16 -0230 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2015-03-18 12:58:16 -0230 |
commit | 9b7668c7c92cf9cb311fe444cdddb489cd2a219d (patch) | |
tree | 5016567c58c81f5654e9d01935e199c6bf4761d2 /cpp/demo/Ice/MFC/client/HelloClientDlg.h | |
parent | VS add-in & build updates: (diff) | |
download | ice-9b7668c7c92cf9cb311fe444cdddb489cd2a219d.tar.bz2 ice-9b7668c7c92cf9cb311fe444cdddb489cd2a219d.tar.xz ice-9b7668c7c92cf9cb311fe444cdddb489cd2a219d.zip |
Removed demos.
Moved demoscript to distribution.
Diffstat (limited to 'cpp/demo/Ice/MFC/client/HelloClientDlg.h')
-rw-r--r-- | cpp/demo/Ice/MFC/client/HelloClientDlg.h | 73 |
1 files changed, 0 insertions, 73 deletions
diff --git a/cpp/demo/Ice/MFC/client/HelloClientDlg.h b/cpp/demo/Ice/MFC/client/HelloClientDlg.h deleted file mode 100644 index 56fb2ee45e9..00000000000 --- a/cpp/demo/Ice/MFC/client/HelloClientDlg.h +++ /dev/null @@ -1,73 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - - -#ifndef HELLO_CLIENT_DLG_H -#define HELLO_CLIENT_DLG_H - -#include "Hello.h" - -#pragma once - -class CHelloClientDlg : public CDialog -{ -public: - - CHelloClientDlg(CWnd* = NULL); - - enum { IDD = IDD_HELLOCLIENT_DIALOG }; - - afx_msg void OnCbnSelchangeMode(); - - void exception(const Ice::Exception&); - void response();; - void sent(); - void flushed(); - -protected: - - virtual void DoDataExchange(CDataExchange*); // DDX/DDV support - - Ice::CommunicatorPtr _communicator; - Demo::HelloPrx _helloPrx; - Demo::Callback_Hello_sayHelloPtr _sayHelloCallback; - Demo::Callback_Hello_shutdownPtr _shutdownCallback; - Ice::Callback_Object_ice_flushBatchRequestsPtr _flushCallback; - CEdit* _host; - CComboBox* _mode; - CSliderCtrl* _timeout; - CStatic* _timeoutStatus; - CSliderCtrl* _delay; - CStatic* _delayStatus; - CStatic* _status; - CButton* _flush; - HICON _hIcon; - - // Generated message map functions - virtual BOOL OnInitDialog(); - afx_msg void OnClose(); - afx_msg void OnPaint(); - afx_msg HCURSOR OnQueryDragIcon(); - afx_msg void OnHostChanged(); - afx_msg void OnModeChanged(); - afx_msg void OnHScroll(UINT, UINT, CScrollBar*); - afx_msg void OnSayHello(); - afx_msg void OnFlush(); - afx_msg void OnShutdown(); - afx_msg LRESULT OnAMICallback(WPARAM, LPARAM); - DECLARE_MESSAGE_MAP() - -private: - - void updateProxy(); - BOOL deliveryModeIsBatch(); - void handleException(const IceUtil::Exception&); -}; - -#endif |