kullanım video'su
Öğeyi görmek için üye olmalısınız.
visual studio boş proje olustur (Source Files - kısmına .cpp ekle adı farketmez)
icine yapıstır o kadar
class Exception : public std::runtime_error {
public:
explicit Exception(const std::string& msg) : std::runtime_error(msg) {}
};
class...