김현우

finished for visual studio 2017

Showing 28 changed files with 24 additions and 5 deletions
 constellation_main.cpp
constellation.vcxproj -> C:\Users\bomm\Desktop\0509_team2\constellation\Debug\constellation.exe
evaluate.cpp
myMatrix.cpp
c:\users\현우\desktop\0509_team2\constellation\constellation\mymatrix.cpp(29): warning C4101: 'temp' :참조되지 않은 지역 변수입니다.
receiver.cpp
c:\users\현우\desktop\0509_team2\constellation\constellation\receiver.cpp(19): warning C4244: '=': 'double'에서 'float'(으)로 변환하면서 데이터가 손실될 수 있습니다.
c:\users\현우\desktop\0509_team2\constellation\constellation\receiver.cpp(20): warning C4244: '=': 'double'에서 'float'(으)로 변환하면서 데이터가 손실될 수 있습니다.
c:\users\현우\desktop\0509_team2\constellation\constellation\receiver.cpp(32): warning C4244: '=': 'double'에서 'float'(으)로 변환하면서 데이터가 손실될 수 있습니다.
c:\users\현우\desktop\0509_team2\constellation\constellation\receiver.cpp(33): warning C4244: '=': 'double'에서 'float'(으)로 변환하면서 데이터가 손실될 수 있습니다.
sender.cpp
c:\users\현우\desktop\0509_team2\constellation\constellation\sender.cpp(37): warning C4244: '=': 'double'에서 'float'(으)로 변환하면서 데이터가 손실될 수 있습니다.
c:\users\현우\desktop\0509_team2\constellation\constellation\sender.cpp(40): warning C4244: '=': 'double'에서 'float'(으)로 변환하면서 데이터가 손실될 수 있습니다.
c:\users\현우\desktop\0509_team2\constellation\constellation\sender.cpp(41): warning C4244: '=': 'double'에서 'float'(으)로 변환하면서 데이터가 손실될 수 있습니다.
c:\users\현우\desktop\0509_team2\constellation\constellation\sender.cpp(42): warning C4244: '=': 'double'에서 'float'(으)로 변환하면서 데이터가 손실될 수 있습니다.
c:\users\현우\desktop\0509_team2\constellation\constellation\sender.cpp(45): warning C4305: '=': 'double'에서 'float'(으)로 잘립니다.
c:\users\현우\desktop\0509_team2\constellation\constellation\sender.cpp(46): warning C4305: '=': 'double'에서 'float'(으)로 잘립니다.
channel.cpp
c:\users\현우\desktop\0509_team2\constellation\constellation\channel.cpp(22): warning C4244: '=': 'double'에서 'float'(으)로 변환하면서 데이터가 손실될 수 있습니다.
코드를 생성하고 있습니다...
constellation.vcxproj -> C:\Users\현우\Desktop\0509_team2\constellation\Debug\constellation.exe
......
#TargetFrameworkVersion=v4.0:PlatformToolSet=v142:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0
Debug|Win32|C:\Users\bomm\Desktop\0509_team2\constellation\|
#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.16299.0
Debug|Win32|C:\Users\현우\Desktop\0509_team2\constellation\|
......
This diff is collapsed. Click to expand it.
......@@ -21,13 +21,13 @@
<PropertyGroup Label="Globals">
<ProjectGuid>{6FF25C27-45BF-4502-A1F8-0EFB069E1515}</ProjectGuid>
<RootNamespace>constellation</RootNamespace>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
<WindowsTargetPlatformVersion>10.0.16299.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<PlatformToolset>v141</PlatformToolset>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
......
#ifndef __SENDER
#define __SENDER
#include <cmath>
#include <ctime>
#include "variables.h"
class Csender {
public:
......