blob: 7320360e4bc64a76e8b31bdd88c0868564c4ba9f [file] [log] [blame]
niklase@google.com470e71d2011-07-07 08:21:25 +00001/*
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 */
pbos@webrtc.org9aca5b32013-05-29 13:19:09 +000010#ifndef WEBRTC_VOICE_ENGINE_TEST_WIN_TEST_WINTEST_H_
11#define WEBRTC_VOICE_ENGINE_TEST_WIN_TEST_WINTEST_H_
niklase@google.com470e71d2011-07-07 08:21:25 +000012
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
24class CWinTestApp : public CWinApp
25{
26public:
27 CWinTestApp();
28
29// Overrides
30 public:
31 virtual BOOL InitInstance();
32
33// Implementation
34
35 DECLARE_MESSAGE_MAP()
36};
37
38extern CWinTestApp theApp;
pbos@webrtc.org9aca5b32013-05-29 13:19:09 +000039
40#endif // WEBRTC_VOICE_ENGINE_TEST_WIN_TEST_WINTEST_H_