Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: Blynk_Example_WIZwiki-W7500
Fork of Blynk by
Blynk/BlynkTemplates.h
- Committer:
- jcm931213
- Date:
- 2017-08-14
- Revision:
- 17:ba922c4e9aee
- Parent:
- 9:7369ec77a3ea
File content as of revision 17:ba922c4e9aee:
class BlynkStackOnly { protected: BlynkStackOnly() {} ~BlynkStackOnly() {} private: /// @brief Declared as private to prevent usage of dynamic memory void* operator new(size_t size); /// @brief Declared as private to prevent usage of dynamic memory void operator delete(void *p); }; class BlynkNonCopyable { protected: BlynkNonCopyable(){} ~BlynkNonCopyable(){} private: /// @brief Declared as private to prevent usage of copy constructor BlynkNonCopyable(const BlynkNonCopyable&); /// @brief Declared as private to prevent usage of assignment operator BlynkNonCopyable& operator=(const BlynkNonCopyable&); }; template<typename T> class BlynkSingleton : public BlynkNonCopyable { public: /** @brief Returns the instance of the singleton type When called for the first time, the singleton instance will be created. All subsequent calls will return a reference to the previously created instance. @return The singleton instance */ static T* instance() { static T instance; return &instance; } protected: BlynkSingleton() {} ~BlynkSingleton() {} };