﻿<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
  <CodeSnippet Format="1.0.0">
    <Header>
      <SnippetTypes>
        <SnippetType>Expansion</SnippetType>
      </SnippetTypes>
      <Title>header</Title>
      <Shortcut>header</Shortcut>
      <Description>Insert a simple header file</Description>
      <Author>Matt Trentini</Author>
    </Header>
    <Snippet>
      <Declarations>
        <Literal Editable="true">
          <ID>classname</ID>
          <ToolTip>The name of the class</ToolTip>
          <Default>MyClass</Default>
          <Function>
          </Function>
        </Literal>
        <Literal Editable="true">
          <ID>namespace</ID>
          <ToolTip>The namespace the class belongs to</ToolTip>
          <Default>MyNameSpace</Default>
          <Function>
          </Function>
        </Literal>
      </Declarations>
      <Code Language="cpp"><![CDATA[#ifndef $classname$_h__
#define $classname$_h__

namespace $namespace$
{
    class $classname$
    {
    public:
        $classname$();

        $selected$$end$
    private:

    };
} //namespace $namespace$

#endif // $classname$_h__
]]></Code>
    </Snippet>
  </CodeSnippet>
</CodeSnippets>