This repository has been archived on 2022-11-09. You can view files and clone it, but cannot push or open issues or pull requests.
patterns-old/lesson_5/main.cpp

17 lines
233 B
C++
Raw Normal View History

2021-11-03 22:35:16 +00:00
/*
* main.cpp
*
* Created on: 4 нояб. 2021 г.
* Author: alexander
*/
#include "Singleton.hpp"
#include <iostream>
int main()
{
std::cout << Singleton::Instance()->getDiscription() << std::endl;
return 0;
}