Archive for April, 2014

<?xmlversion=“1.0“encoding=“utf-8“ ?>   <CodeSnippetsxmlns=“http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet“>   <CodeSnippetFormat=“1.0.0“>     <Header>       <Title>Qt Property</Title>       <Shortcut>QtProp</Shortcut>       <Description>         Code snippet for an automatically implemented Qt property         Language Version: C++ Qt       </Description>       <Author>cihant</Author>       <SnippetTypes>         <SnippetType>Expansion</SnippetType>       </SnippetTypes>     </Header>     <Snippet>       <Declarations>         <Literal>           <ID>type</ID>           <ToolTip>Property type</ToolTip>           <Default>QString</Default>         </Literal>         <Literal>           <ID>propertyName</ID>           <ToolTip>Property name</ToolTip>           <Default>MyProperty</Default>         </Literal>       </Declarations>       <CodeLanguage=“csharp“>         <![CDATA[ public: /* $propertyName$ Property */                                                                              Q_PROPERTY($type$ $propertyName$ READ $propertyName$ WRITE set$propertyName$ […]


top