Working on backing files.
Also started a sketches project to illustrate quick ideas.
This commit is contained in:
29
.idea/fileTemplates/includes/C File Header.h
generated
Normal file
29
.idea/fileTemplates/includes/C File Header.h
generated
Normal file
@@ -0,0 +1,29 @@
|
||||
#if ($HEADER_COMMENTS)
|
||||
///
|
||||
/// \file $FILE_NAME
|
||||
/// \author $USER_NAME
|
||||
/// \created $DATE
|
||||
/// \brief ${NAME} ...
|
||||
///
|
||||
#if ($ORGANIZATION_NAME && $ORGANIZATION_NAME != "")
|
||||
/// Copyright (c) $YEAR ${ORGANIZATION_NAME}#if (!$ORGANIZATION_NAME.endsWith(".")).#end All rights reserved.
|
||||
#else
|
||||
/// \section COPYRIGHT
|
||||
/// Copyright $YEAR K. Isom <kyle@imap.cc>
|
||||
///
|
||||
/// Permission to use, copy, modify, and/or distribute this software for
|
||||
/// any purpose with or without fee is hereby granted, provided that the
|
||||
/// above copyright notice and this permission notice appear in all copies.
|
||||
///
|
||||
/// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
|
||||
/// WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
|
||||
/// WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
|
||||
/// BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
|
||||
/// OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
||||
/// WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
||||
/// ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
|
||||
/// SOFTWARE.
|
||||
#end
|
||||
///
|
||||
#end
|
||||
|
||||
13
.idea/fileTemplates/internal/C++ Class Header.h
generated
Normal file
13
.idea/fileTemplates/internal/C++ Class Header.h
generated
Normal file
@@ -0,0 +1,13 @@
|
||||
#parse("C File Header.h")
|
||||
#[[#ifndef]]# ${INCLUDE_GUARD}
|
||||
#[[#define]]# ${INCLUDE_GUARD}
|
||||
|
||||
${NAMESPACES_OPEN}
|
||||
|
||||
class ${NAME} {
|
||||
|
||||
};
|
||||
|
||||
${NAMESPACES_CLOSE}
|
||||
|
||||
#[[#endif]]# // ${INCLUDE_GUARD}
|
||||
Reference in New Issue
Block a user