-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathUnittestView.h
More file actions
48 lines (36 loc) · 963 Bytes
/
UnittestView.h
File metadata and controls
48 lines (36 loc) · 963 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/* UnittestView.h : interface of the CUnittestView class
Copyright (c) 1987-2019 Advanced Systems for Power Engineering, Inc. (ASPEN).
All rights reserved.
*/
#pragma once
class CUnittestView : public CView
{
protected: // create from serialization only
CUnittestView();
DECLARE_DYNCREATE(CUnittestView)
// Attributes
public:
CUnittestDoc* GetDocument() const;
// Operations
public:
// Overrides
public:
virtual void OnDraw(CDC* pDC); // overridden to draw this view
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
protected:
// Implementation
public:
virtual ~CUnittestView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// Generated message map functions
protected:
DECLARE_MESSAGE_MAP()
};
#ifndef _DEBUG // debug version in UnittestView.cpp
inline CUnittestDoc* CUnittestView::GetDocument() const
{ return reinterpret_cast<CUnittestDoc*>(m_pDocument); }
#endif