mirror of
https://github.com/huihut/interview.git
synced 2024-03-22 13:10:48 +08:00
11 lines
168 B
C++
11 lines
168 B
C++
|
//
|
||
|
// Created by xiemenghui on 2018/7/20.
|
||
|
//
|
||
|
|
||
|
#include <iostream>
|
||
|
#include "Singleton.h"
|
||
|
|
||
|
void Singleton::DoSomething()
|
||
|
{
|
||
|
std::cout << "Singleton do something\n";
|
||
|
}
|