mirror of
https://github.com/huihut/interview.git
synced 2024-03-22 13:10:48 +08:00
16 lines
256 B
C
16 lines
256 B
C
//
|
|
// Created by xiemenghui on 2018/7/20.
|
|
//
|
|
|
|
#ifndef DESIGNPATTERN_SINGLETONMAIN_H
|
|
#define DESIGNPATTERN_SINGLETONMAIN_H
|
|
|
|
#include "Singleton.h"
|
|
|
|
void SingletonMain()
|
|
{
|
|
Singleton::GetInstance().DoSomething();
|
|
}
|
|
|
|
#endif //DESIGNPATTERN_SINGLETONMAIN_H
|