From dadfa6e184ff538763fd627c0d859ec85c047864 Mon Sep 17 00:00:00 2001 From: crupest Date: Mon, 17 Jan 2022 23:20:58 +0800 Subject: ... --- README.md | 8 +- snippets/vc++snippets.snippet | 175 ------------------------------------------ 2 files changed, 1 insertion(+), 182 deletions(-) delete mode 100644 snippets/vc++snippets.snippet diff --git a/README.md b/README.md index 6e4253da..c5893846 100644 --- a/README.md +++ b/README.md @@ -34,12 +34,6 @@ Check the code or fire a issue if you have any problem. - `tools/` contains some codes of tools like code generators. - - `tools/cppmerge` contains a _python_ script program that merges all cpp headers and sources into one **single** header and source. **Not use now**. + - `cppmerge/` contains a _python_ script program that merges all cpp headers and sources into one **single** header and source. **Not use now**. - `migrate-1/` contains _python_ scripts that migrate all header and source files into CamelCase. **Not use after migration**. - - - `tools/build.py` is a python3 script to build the source code. - -- `snippets/` contains useful snippets file for _Visual Studio_, you can import it. **No longer use any more**, because now I develop CruUI in VS Code. - -- `CMakeSettings.json` is a file that helps _Visual Studio_ to config CMake and setup intellisense. diff --git a/snippets/vc++snippets.snippet b/snippets/vc++snippets.snippet deleted file mode 100644 index ebd72463..00000000 --- a/snippets/vc++snippets.snippet +++ /dev/null @@ -1,175 +0,0 @@ - - - -
- Deleted Copy Constructor/Assignment - crupest - Declare a deleted copy constructor and a deleted copy assignment operator for a class. - deletecopy - - Expansion - -
- - - - classname - class_name - The name of the class. - - - - - - -
- -
- Default Copy Constructor/Assignment - crupest - Declare a default copy constructor and a default copy assignment operator for a class. - defaultcopy - - Expansion - -
- - - - classname - class_name - The name of the class. - - - - - - -
- -
- Deleted Move Constructor/Assignment - crupest - Declare a deleted move constructor and a deleted move assignment operator for a class. - deletemove - - Expansion - -
- - - - classname - class_name - The name of the class. - - - - - - -
- -
- Default Move Constructor/Assignment - crupest - Declare a default move constructor and a default move assignment operator for a class. - defaultmove - - Expansion - -
- - - - classname - class_name - The name of the class. - - - - - - -
- -
- Default Copyable/Movable Class - crupest - Define a class with default constructor, destructor, move/copy constructor/assignment-operator. - defaultclass - - Expansion - -
- - - - classname - class_name - The name of the class. - - - - - - -
- -
- Default Noncopyable/Nonmovable Class - crupest - Define a class with default constructor, destructor and deleted move/copy constructor/assignment-operator. - objectclass - - Expansion - -
- - - - classname - class_name - The name of the class. - - - - - - -
-
\ No newline at end of file -- cgit v1.2.3