Home | History | Annotate | Download | only in win_test
      1 /*
      2  *  Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
      3  *
      4  *  Use of this source code is governed by a BSD-style license
      5  *  that can be found in the LICENSE file in the root of the source
      6  *  tree. An additional intellectual property rights grant can be found
      7  *  in the file PATENTS.  All contributing project authors may
      8  *  be found in the AUTHORS file in the root of the source tree.
      9  */
     10 #ifndef WEBRTC_VOICE_ENGINE_TEST_WIN_TEST_WINTEST_H_
     11 #define WEBRTC_VOICE_ENGINE_TEST_WIN_TEST_WINTEST_H_
     12 
     13 #ifndef __AFXWIN_H__
     14 	#error "include 'stdafx.h' before including this file for PCH"
     15 #endif
     16 
     17 #include "resource.h"		// main symbols
     18 
     19 
     20 // CWinTestApp:
     21 // See WinTest.cpp for the implementation of this class
     22 //
     23 
     24 class CWinTestApp : public CWinApp
     25 {
     26 public:
     27 	CWinTestApp();
     28 
     29 // Overrides
     30 	public:
     31 	virtual BOOL InitInstance();
     32 
     33 // Implementation
     34 
     35 	DECLARE_MESSAGE_MAP()
     36 };
     37 
     38 extern CWinTestApp theApp;
     39 
     40 #endif  // WEBRTC_VOICE_ENGINE_TEST_WIN_TEST_WINTEST_H_
     41