LogSystem beta 1.4
This is a logging system project
 
载入中...
搜索中...
未找到
nocopy.hpp
浏览该文件的文档.
1#pragma once
2#include <iostream>
3
4namespace XuServer
5{
6 class nocopy
7 {
8 public:
9 nocopy() {}
10 nocopy(const nocopy &) = delete;
11 const nocopy &operator=(const nocopy &) = delete;
13 };
14}
Definition nocopy.hpp:7
~nocopy()
Definition nocopy.hpp:12
const nocopy & operator=(const nocopy &)=delete
nocopy(const nocopy &)=delete
nocopy()
Definition nocopy.hpp:9
Definition config.hpp:9