添加演示demo项目
This commit is contained in:
16
WinDeviceDemo/WinDeviceDemo.cpp
Normal file
16
WinDeviceDemo/WinDeviceDemo.cpp
Normal file
@@ -0,0 +1,16 @@
|
||||
// WinDeviceDemo.cpp: 定义应用程序的入口点。
|
||||
//
|
||||
|
||||
#include "WinDeviceDemo.h"
|
||||
#include "Video/ScreenManager.h"
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main()
|
||||
{
|
||||
cout << "Hello CMake." << endl;
|
||||
|
||||
ScreenManager screenManager;
|
||||
screenManager.UpdateDisplayInfo();
|
||||
return 0;
|
||||
}
|
8
WinDeviceDemo/WinDeviceDemo.h
Normal file
8
WinDeviceDemo/WinDeviceDemo.h
Normal file
@@ -0,0 +1,8 @@
|
||||
// WinDeviceDemo.h: 标准系统包含文件的包含文件
|
||||
// 或项目特定的包含文件。
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <iostream>
|
||||
|
||||
// TODO: 在此处引用程序需要的其他标头。
|
Reference in New Issue
Block a user