blob: 1a5f7666e20f54d653322ee54362e7fdf22fe8bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>Deleted Copy Constructor/Assignment</Title>
<Author>crupest</Author>
<Description>Declare a deleted copy constructor and a deleted copy assignment operator for a class.</Description>
<Shortcut>dcopy</Shortcut>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
</SnippetTypes>
</Header>
<Snippet>
<Declarations>
<Literal>
<ID>classname</ID>
<Default>class_name</Default>
<ToolTip>The name of the class.</ToolTip>
</Literal>
</Declarations>
<Code Language="CPP" Kind="method decl">
<![CDATA[
$classname$(const $classname$& other) = delete;
$classname$& operator=(const $classname$& other) = delete;
]]>
</Code>
</Snippet>
</CodeSnippet>
<CodeSnippet Format="1.0.0">
<Header>
<Title>Deleted Move Constructor/Assignment</Title>
<Author>crupest</Author>
<Description>Declare a deleted move constructor and a deleted move assignment operator for a class.</Description>
<Shortcut>dmove</Shortcut>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
</SnippetTypes>
</Header>
<Snippet>
<Declarations>
<Literal>
<ID>classname</ID>
<Default>class_name</Default>
<ToolTip>The name of the class.</ToolTip>
</Literal>
</Declarations>
<Code Language="CPP" Kind="method decl">
<![CDATA[
$classname$($classname$&& other) = delete;
$classname$& operator=($classname$&& other) = delete;
]]>
</Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>
|