123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706 |
- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- $
- == cpp.cin ==
- cin >> <CURSOR>;
- $
- == cpp.cout-variabe ==
- cout << <CURSOR> << endl;
- $
- == cpp.cout-string ==
- cout << "<CURSOR>\n";
- $
- == cpp.cout-operator == insert ==
- << "<CURSOR>"
- $
- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- == cpp.output-manipulator-boolalpha == insert ==
- << boolalpha <CURSOR>
- == cpp.output-manipulator-dec == insert ==
- << dec <CURSOR>
- == cpp.output-manipulator-endl == insert ==
- << endl <CURSOR>
- == cpp.output-manipulator-fixed == insert ==
- << fixed <CURSOR>
- == cpp.output-manipulator-flush == insert ==
- << flush <CURSOR>
- == cpp.output-manipulator-hex == insert ==
- << hex <CURSOR>
- == cpp.output-manipulator-internal == insert ==
- << internal <CURSOR>
- == cpp.output-manipulator-left == insert ==
- << left <CURSOR>
- == cpp.output-manipulator-oct == insert ==
- << oct <CURSOR>
- == cpp.output-manipulator-right == insert ==
- << right <CURSOR>
- == cpp.output-manipulator-scientific == insert ==
- << scientific <CURSOR>
- == cpp.output-manipulator-setbase == insert ==
- << setbase(10<CURSOR>)
- == cpp.output-manipulator-setfill == insert ==
- << setfill(<CURSOR>)
- == cpp.output-manipulator-setiosflag == insert ==
- << setiosflags(<CURSOR>)
- == cpp.output-manipulator-setprecision == insert ==
- << setprecision(6<CURSOR>)
- == cpp.output-manipulator-setw == insert ==
- << setw(0<CURSOR>)
- == cpp.output-manipulator-showbase == insert ==
- << showbase <CURSOR>
- == cpp.output-manipulator-showpoint == insert ==
- << showpoint <CURSOR>
- == cpp.output-manipulator-showpos == insert ==
- << showpos <CURSOR>
- == cpp.output-manipulator-uppercase == insert ==
- << uppercase <CURSOR>
- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- == cpp.method-implementation ==
- //--------------------------------------------------------------------------------------
- // Class: |?CLASSNAME|
- // Method: |?METHODNAME|
- //--------------------------------------------------------------------------------------
- <CURSOR>void |CLASSNAME|::|METHODNAME| ( ) {
- return ;
- } // ----- end of method |CLASSNAME|::|METHODNAME| -----
-
- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- == cpp.accessor-implementation ==
- /**
- * Class: |?CLASSNAME|
- * Method: Get|?ATTRIBUTE|
- */
- inline <CURSOR>int |CLASSNAME|::Get|ATTRIBUTE| ( ) {
- return |ATTRIBUTE|;
- } // ----- end of method |CLASSNAME|::get_|ATTRIBUTE| -----
-
- //--------------------------------------------------------------------------------------
- // Class: |CLASSNAME|
- // Method: set_|ATTRIBUTE|
- //--------------------------------------------------------------------------------------
- inline void |CLASSNAME|::Set|ATTRIBUTE| ( int value ) {
- |ATTRIBUTE| = value;
- return ;
- } // ----- end of method |CLASSNAME|::set_|ATTRIBUTE| -----
-
- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- == cpp.class-definition ==
- /**
- \brief <CURSOR>
- \details
- */
- class |?CLASSNAME:c| : public |?BASECLASS:c| {
-
- // ==================== LIFECYCLE =======================
-
- /** Default constructor */
- |CLASSNAME| ( );
-
- /** Default destructor */
- ~|CLASSNAME| ();
-
- // ==================== OPERATORS =======================
-
- // ==================== OPERATIONS =======================
-
- // ==================== ACCESS =======================
-
- // ==================== INQUIRY =======================
-
- protected:
-
- // ==================== DATA MEMBERS =========================
-
- private:
-
- }; // ----- end of class |CLASSNAME| -----
-
- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- == cpp.class-definitionLemma ==
- #pragma once
- #include "|?BASECLASS|.h"
-
- namespace Lemma {
-
- /**
- * \ingroup |?MODULE|
- * \brief <CURSOR>
- * \details
- */
- class |?CLASSNAME:c| : public |BASECLASS:c| {
-
- friend std::ostream &operator<<(std::ostream &stream, const |CLASSNAME| &ob);
-
- protected:
- /*
- * This key is used to lock the constructor. It is protected so that inhereted
- * classes also have the key to contruct their base class.
- */
- struct ctor_key {};
-
- public:
-
- // ==================== LIFECYCLE =======================
-
- /**
- * Default constructor.
- * @note This method is locked, and cannot be called directly.
- * The reason that the method is public is to enable the use
- * of make_shared whilst enforcing the use of shared_ptr,
- * in c++-17, this curiosity may be resolved.
- * @see |CLASSNAME|::NewSP
- */
- explicit |CLASSNAME| ( const ctor_key& );
-
- /**
- * DeSerializing constructor.
- * @note This method is locked, and cannot be called directly.
- * The reason that the method is public is to enable the use
- * of make_shared whilst enforcing the use of shared_ptr,
- * in c++-17, this curiosity may be resolved.
- * @see |CLASSNAME|::DeSerialize
- */
- |CLASSNAME| ( const YAML::Node& node, const ctor_key& );
-
- /**
- * Default destructor.
- * @note This method should never be called due to the mandated
- * use of smart pointers. It is necessary to keep the method
- * public in order to allow for the use of the more efficient
- * make_shared constructor.
- */
- virtual ~|CLASSNAME| ();
-
- /**
- * Uses YAML to serialize this object.
- * @return a YAML::Node
- * @see |CLASSNAME|::DeSerialize
- */
- virtual YAML::Node Serialize() const;
-
- /*
- * Factory method for generating concrete class.
- * @return a std::shared_ptr of type |CLASSNAME|
- */
- static std::shared_ptr< |CLASSNAME| > NewSP();
-
- /**
- * Constructs an |CLASSNAME| object from a YAML::Node.
- * @see |CLASSNAME|::Serialize
- */
- static std::shared_ptr<|CLASSNAME|> DeSerialize(const YAML::Node& node);
-
- // ==================== OPERATORS =======================
-
- // ==================== OPERATIONS =======================
-
- // ==================== ACCESS =======================
-
- // ==================== INQUIRY =======================
- /**
- * Returns the name of the underlying class, similiar to Python's type
- * @return string of class name
- */
- virtual inline std::string GetName() const {
- return CName;
- }
-
- protected:
-
- // ==================== LIFECYCLE =======================
-
- /** Copy is disabled */
- |CLASSNAME|( const |CLASSNAME|& ) = delete;
-
- // ==================== DATA MEMBERS =========================
-
- private:
-
- /** ASCII string representation of the class name */
- static constexpr auto CName = "|CLASSNAME|";
-
- }; // ----- end of class |CLASSNAME| -----
- } // ----- end of namespace Lemma ----
-
- /* vim: set tabstop=4 expandtab: */
- /* vim: set filetype=cpp: */
-
- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- == cpp.class-definitionLemmaAbstract ==
- /**
- \brief <CURSOR>
- \details
- */
- class |?CLASSNAME:c| : public |?BASECLASS:c| {
-
- friend std::ostream &operator<<(std::ostream &stream,
- const |CLASSNAME| &ob) {
- stream << *(|BASECLASS|*)(&ob);
- return stream;
- }
-
- public:
-
- // ==================== LIFECYCLE =======================
-
- // ==================== OPERATORS =======================
-
- // ==================== OPERATIONS =======================
- virtual void APIDemo()=0; // REMEMBER TO MAKE PURE VIRTUAL DUMMY
-
- // ==================== ACCESS =======================
-
- // ==================== INQUIRY =======================
-
- protected:
-
- // ==================== LIFECYCLE =======================
-
- /** Default protected constructor, abstract class this cannot be called */
- |CLASSNAME| (const std::string& name);
-
- /** Default protected destructor, this is an abstract class, this cannot be called */
- ~|CLASSNAME| ();
-
- // ==================== DATA MEMBERS =========================
-
- private:
-
- }; // ----- end of class |CLASSNAME| -----
-
- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- == cpp.class-implementationLemma ==
- #include "|?CLASSNAME|.h"
-
- namespace Lemma {
-
- // ==================== FRIEND METHODS =====================
-
- std::ostream &operator << (std::ostream &stream, const |CLASSNAME| &ob) {
- stream << ob.Serialize() << "\n---\n"; // End of doc ---
- return stream;
- }
-
- // ==================== LIFECYCLE =======================
-
- //--------------------------------------------------------------------------------------
- // Class: |CLASSNAME|
- // Method: |CLASSNAME|
- // Description: constructor (locked)
- //--------------------------------------------------------------------------------------
- |CLASSNAME|::|CLASSNAME| (const ctor_key&) : |?BASECLASS|( |BASECLASS|::ctor_key() ) {
-
- } // ----- end of method |CLASSNAME|::|CLASSNAME| (constructor) -----
-
- //--------------------------------------------------------------------------------------
- // Class: |CLASSNAME|
- // Method: |CLASSNAME|
- // Description: DeSerializing constructor (locked)
- //--------------------------------------------------------------------------------------
- |CLASSNAME|::|CLASSNAME| (const YAML::Node& node, const ctor_key&) : |BASECLASS|(node, |BASECLASS|::ctor_key()) {
-
- } // ----- end of method |CLASSNAME|::|CLASSNAME| (constructor) -----
-
- //--------------------------------------------------------------------------------------
- // Class: |CLASSNAME|
- // Method: NewSP()
- // Description: public constructor returing a shared_ptr
- //--------------------------------------------------------------------------------------
- std::shared_ptr< |CLASSNAME| > |CLASSNAME|::NewSP() {
- return std::make_shared< |CLASSNAME| >( ctor_key() );
- }
-
- //--------------------------------------------------------------------------------------
- // Class: |CLASSNAME|
- // Method: ~|CLASSNAME|
- // Description: destructor (protected)
- //--------------------------------------------------------------------------------------
- |CLASSNAME|::~|CLASSNAME| () {
-
- } // ----- end of method |CLASSNAME|::~|CLASSNAME| (destructor) -----
-
- //--------------------------------------------------------------------------------------
- // Class: |CLASSNAME|
- // Method: Serialize
- //--------------------------------------------------------------------------------------
- YAML::Node |CLASSNAME|::Serialize ( ) const {
- YAML::Node node = |BASECLASS|::Serialize();
- node.SetTag( GetName() );
- // FILL IN CLASS SPECIFICS HERE
- return node;
- } // ----- end of method |CLASSNAME|::Serialize -----
-
- //--------------------------------------------------------------------------------------
- // Class: |CLASSNAME|
- // Method: DeSerialize
- //--------------------------------------------------------------------------------------
- std::shared_ptr<|CLASSNAME|> |CLASSNAME|::DeSerialize ( const YAML::Node& node ) {
- if (node.Tag() != "|CLASSNAME|" ) {
- throw DeSerializeTypeMismatch( "|CLASSNAME|", node.Tag());
- }
- return std::make_shared< |CLASSNAME| > ( node, ctor_key() );
- } // ----- end of method |CLASSNAME|::DeSerialize -----
-
- } // ---- end of namespace Lemma ----
-
- /* vim: set tabstop=4 expandtab: */
- /* vim: set filetype=cpp: */
-
- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- == cpp.class-implementation ==
-
- // ==================== LIFECYCLE =======================
-
- //--------------------------------------------------------------------------------------
- // Class: |CLASSNAME|
- // Method: |CLASSNAME|
- // Description: constructor (protected)
- //--------------------------------------------------------------------------------------
- |CLASSNAME|::|CLASSNAME| ( ) : |BASECLASS|(name) {
-
- } // ----- end of method |CLASSNAME|::|CLASSNAME| (constructor) -----
-
- //--------------------------------------------------------------------------------------
- // Class: |CLASSNAME|
- // Method: ~|CLASSNAME|
- // Description: destructor
- //--------------------------------------------------------------------------------------
- |CLASSNAME|::~|CLASSNAME| () {
- <CURSOR>
- } // ----- end of method |CLASSNAME|::~|CLASSNAME| (destructor) -----
-
-
- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- == cpp.class-using-new-definition ==
- // =====================================================================================
- // Class: |?CLASSNAME:c|
- // Description: <CURSOR>
- // =====================================================================================
- class |CLASSNAME|
- {
- public:
-
- // ==================== LIFECYCLE =======================================
- |CLASSNAME| (); // constructor
- |CLASSNAME| ( const |CLASSNAME| &other ); // copy constructor
- ~|CLASSNAME| (); // destructor
-
- // ==================== OPERATORS =======================================
- const |CLASSNAME|& operator = ( const |CLASSNAME| &other ); // assignment operator
-
- // ==================== OPERATIONS =======================================
-
- // ==================== ACCESS =======================================
-
- // ==================== INQUIRY =======================================
-
- // ==================== DATA MEMBERS =======================================
- protected:
-
- private:
-
- }; // ----- end of class |CLASSNAME| -----
-
- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- == cpp.class-using-new-implementation ==
- //--------------------------------------------------------------------------------------
- // Class: |?CLASSNAME|
- // Method: |CLASSNAME|
- // Description: constructor
- //--------------------------------------------------------------------------------------
- |CLASSNAME|::|CLASSNAME| ()
- {
- } // ----- end of method |CLASSNAME|::|CLASSNAME| (constructor) -----
-
- //--------------------------------------------------------------------------------------
- // Class: |CLASSNAME|
- // Method: |CLASSNAME|
- // Description: copy constructor
- //--------------------------------------------------------------------------------------
- |CLASSNAME|::|CLASSNAME| ( const |CLASSNAME| &other )
- {
- } // ----- end of method |CLASSNAME|::|CLASSNAME| (copy constructor) -----
-
- //--------------------------------------------------------------------------------------
- // Class: |CLASSNAME|
- // Method: ~|CLASSNAME|
- // Description: destructor
- //--------------------------------------------------------------------------------------
- |CLASSNAME|::~|CLASSNAME| ()
- {
- } // ----- end of method |CLASSNAME|::~|CLASSNAME| (destructor) -----
-
- //--------------------------------------------------------------------------------------
- // Class: |CLASSNAME|
- // Method: operator =
- // Description: assignment operator
- //--------------------------------------------------------------------------------------
- const |CLASSNAME|&
- |CLASSNAME|::operator = ( const |CLASSNAME| &other )
- {
- if ( this != &other ) {
- }
- return *this;
- } // ----- end of method |CLASSNAME|::operator = (assignment operator) -----
-
- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- == cpp.error-class ==
- // =====================================================================================
- // Class: |?CLASSNAME:c|
- // Description: <CURSOR>
- // =====================================================================================
- class |CLASSNAME|
- {
- public: |CLASSNAME| ( string msg = "|CLASSNAME|" ):message(msg) { }
- virtual ~|CLASSNAME| ( ) { }
- virtual string what ( ) const throw ( ) { return message; }
- protected: string message;
- }; // ---------- end of class |CLASSNAME| ----------
-
- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- == cpp.template-method-implementation ==
- template < class T >
- void<CURSOR> |?CLASSNAME|<T>::|?METHODNAME| ( )
- {
- return ;
- } // ----- end of method |CLASSNAME|<T>::|METHODNAME| -----
- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- == cpp.template-accessor-implementation ==
- //--------------------------------------------------------------------------------------
- // Class: |?CLASSNAME|
- // Method: get_|?ATTRIBUTE|
- //--------------------------------------------------------------------------------------
- template < class T >
- inline <CURSOR>int |CLASSNAME|<T>::get_|ATTRIBUTE| ( )
- {
- return |ATTRIBUTE|;
- } // ----- end of method |CLASSNAME|<T>::get_|ATTRIBUTE| -----
-
- //--------------------------------------------------------------------------------------
- // Class: |CLASSNAME|
- // Method: set_|ATTRIBUTE|
- //--------------------------------------------------------------------------------------
- template < class T >
- inline void |CLASSNAME|<T>::set_|ATTRIBUTE| ( int value )
- {
- |ATTRIBUTE| = value;
- return ;
- } // ----- end of method |CLASSNAME|<T>::set_|ATTRIBUTE| -----
- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- == cpp.template-class-definition ==
- // =====================================================================================
- // Class: |?CLASSNAME:c|
- // Description: <CURSOR>
- // =====================================================================================
-
- template < class T >
- class |CLASSNAME|
- {
- public:
-
- // ==================== LIFECYCLE =======================================
- |CLASSNAME| (); // constructor
-
- // ==================== OPERATORS =======================================
-
- // ==================== OPERATIONS =======================================
-
- // ==================== ACCESS =======================================
-
- // ==================== INQUIRY =======================================
-
- // ==================== DATA MEMBERS =======================================
- protected:
-
- private:
-
- }; // ----- end of template class |CLASSNAME| -----
-
- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- == cpp.template-class-implementation ==
- //--------------------------------------------------------------------------------------
- // Class: |?CLASSNAME|
- // Method: |CLASSNAME|
- // Description: constructor
- //--------------------------------------------------------------------------------------
- template < class T >
- |CLASSNAME| <T>:: |CLASSNAME| ()
- {
- } // ----- end of constructor of template class |CLASSNAME| -----
-
- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- == cpp.template-class-using-new-definition ==
- // =====================================================================================
- // Class: |?CLASSNAME:c|
- // Description: <CURSOR>
- // =====================================================================================
-
- template < class T >
- class |CLASSNAME|
- {
- public:
-
- // ==================== LIFECYCLE =======================================
- |CLASSNAME| (); // constructor
- |CLASSNAME| ( const |CLASSNAME| &other ); // copy constructor
- ~|CLASSNAME| (); // destructor
-
- // ==================== OPERATORS =======================================
-
- const |CLASSNAME|& operator = ( const |CLASSNAME| &other ); // assignment operator
-
- // ==================== OPERATIONS =======================================
-
- // ==================== ACCESS =======================================
-
- // ==================== INQUIRY =======================================
-
- // ==================== DATA MEMBERS =======================================
- protected:
-
- private:
-
- }; // ----- end of template class |CLASSNAME| -----
-
- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- == cpp.template-class-using-new-implementation ==
- //--------------------------------------------------------------------------------------
- // Class: |?CLASSNAME|
- // Method: |CLASSNAME|
- // Description: constructor
- //--------------------------------------------------------------------------------------
- template < class T >
- |CLASSNAME|<T>::|CLASSNAME| ()
- {
- } // ----- end of constructor of template class |CLASSNAME| -----
-
- //--------------------------------------------------------------------------------------
- // Class: |CLASSNAME|
- // Method: |CLASSNAME|
- // Description: copy constructor
- //--------------------------------------------------------------------------------------
- template < class T >
- |CLASSNAME|<T>::|CLASSNAME| ( const |CLASSNAME| &other )
- {
- } // ----- end of copy constructor of template class |CLASSNAME| -----
-
- //--------------------------------------------------------------------------------------
- // Class: |CLASSNAME|
- // Method: ~|CLASSNAME|
- // Description: destructor
- //--------------------------------------------------------------------------------------
- template < class T >
- |CLASSNAME|<T>::~|CLASSNAME| ()
- {
- } // ----- end of destructor of template class |CLASSNAME| -----
-
- //--------------------------------------------------------------------------------------
- // Class: |CLASSNAME|
- // Method: operator =
- // Description: assignment operator
- //--------------------------------------------------------------------------------------
- template < class T >
- const |CLASSNAME|<T>& |CLASSNAME|<T>::operator = ( const |CLASSNAME| &other )
- {
- if ( this != &other ) {
- }
- return *this;
- } // ----- end of assignment operator of template class |CLASSNAME| -----
-
- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- == cpp.template-function ==
- template <class T>
- <CURSOR>void |?TEMPALTE_FUNCTION_NAME| ( T param )
- {
- return ;
- } // ----- end of template function |?TEMPALTE_FUNCTION_NAME| -----
- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- == cpp.operator-in ==
- ostream &
- operator << ( ostream & os, const |?CLASSNAME| & obj )
- {
- os << obj.<CURSOR> ;
- return os;
- } // ----- end of function operator << -----
- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- == cpp.operator-out ==
- istream &
- operator >> ( istream & is, |?CLASSNAME| & obj )
- {
- is >> obj.<CURSOR> ;
- return is;
- } // ----- end of function operator >> -----
- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- == cpp.try-catch ==
- try {
- <SPLIT>}
- catch ( const <CURSOR> &ExceptObj ) { // handle exception:
- }
- catch (...) { // handle exception: unspezified
- }
-
- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- == cpp.catch ==
- catch ( <CURSOR>const &ExceptObj ) { // handle exception:
- <SPLIT>}
- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- == cpp.catch-points ==
- catch (...) { // handle exception:
- <SPLIT>}
- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- == cpp.extern ==
- extern "C" {<CURSOR>
- <SPLIT>}
- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- == cpp.open-input-file ==
- string ifs_file_name = "<CURSOR>"; // input file name
- ifstream ifs; // create ifstream object
-
- ifs.open ( ifs_file_name.c_str() ); // open ifstream
- if (!ifs) {
- cerr << "\nERROR : failed to open input file " << ifs_file_name << endl;
- exit (EXIT_FAILURE);
- }
-
-
- ifs.close (); // close ifstream
- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- == cpp.open-output-file ==
- string ofs_file_name = "<CURSOR>"; // input file name
- ofstream ofs; // create ofstream object
-
- ofs.open ( ofs_file_name.c_str() ); // open ofstream
- if (!ofs) {
- cerr << "\nERROR : failed to open output file " << ofs_file_name << endl;
- exit (EXIT_FAILURE);
- }
-
-
- ofs.close (); // close ofstream
- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- == cpp.namespace-std ==
- using namespace std;
- == cpp.namespace ==
- using namespace |?NAMESPACE|;
- == cpp.namespace-block ==
- namespace |?NAMESPACE| {
- <CURSOR>
- <SPLIT>} // ----- end of |NAMESPACE| name -----
- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- == cpp.rtti-typeid == insert ==
- typeid(<CURSOR><SPLIT>)
- $
- == cpp.rtti-static-cast == insert ==
- static_cast<>(<CURSOR><SPLIT>)
- $
- == cpp.rtti-const-cast == insert ==
- const_cast<>(<CURSOR><SPLIT>)
- $
- == cpp.rtti-reinterpret-cast == insert ==
- reinterpret_cast<>(<CURSOR><SPLIT>)
- $
- == cpp.rtti-dynamic-cast == insert ==
- dynamic_cast<>(<CURSOR><SPLIT>)
- $%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
- /* vim: set tabstop=4 expandtab: */
- /* vim: set filetype=cpp: */
|