Ignore:
Timestamp:
May 5, 2016, 1:06:20 PM (9 years ago)
Author:
Frederik Heber <heber@…>
Children:
c1e104
Parents:
039e15
git-author:
Frederik Heber <heber@…> (05/05/16 09:20:08)
git-committer:
Frederik Heber <heber@…> (05/05/16 13:06:20)
Message:

Singleton extended to also return AtomicInstance-wrapped instance.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/CodePatterns/Singleton.hpp

    r039e15 rc6a59b  
    1717
    1818#include "CodePatterns/Assert.hpp"
     19#include "CodePatterns/AtomicInstance.hpp"
    1920
    2021/**
     
    145146   * when only the Singleton pattern is friend with the class
    146147   *
    147    * All methods have similar sematics to auto_ptr
     148   * All methods have similar semantics to auto_ptr
    148149   */
    149150  class ptr_t {
     
    235236
    236237  /**
     238   * returns the instance of this Singleton as a reference inside a mutex-locked
     239   * unique ptr.
     240   *
     241   * If no Singleton exists at this point and we are allowed to create one
     242   * a new one is created and stored inside the singleton. If the mutex is locked,
     243   * the function will wait until the mutex is released. This can be used to
     244   * ensure atomic access to the static instance.
     245   */
     246  static AtomicInstance<T> getLockedInstance();
     247
     248  /**
    237249   * returns the instance of this singleton as a pointer
    238250   *
Note: See TracChangeset for help on using the changeset viewer.