convert.hpp를 잘 include 했음에도 이 선언에는 스토리지 클래스 또는 형식 지정자가 없습니다.C/C++(77) 에러가 나타났다. 이유에는 여러가지가 있는데 내 경우에는 이미 있는 클래스 이름을 써서 그렇다 Convert 클래스는 https://docs.microsoft.com/ko-kr/dotnet/api/system.convert?view=net-6.0 Convert 클래스 (System) 기본 데이터 형식을 다른 데이터 형식으로 변환합니다.Converts a base data type to another base data type. docs.microsoft.com 위처럼 이미 존재하기 때문에 다른 이름을 사용해야 했다. 다른 이유로는 2. 헤더를 제대로 include 안한 경우가 있다..