This is the abstract factory for graph loader strategy.  
 More...
#include <AbstractGraphLoaderStrategyFactory.h>
 | 
| const std::string &  | getKey () const | 
|   | It returns the factory key associated to the concreate factory.  
  | 
|   | 
| virtual const std::string &  | getType () const =0 | 
|   | Returns the type (name) of this factory.  
  | 
|   | 
| virtual  | ~AbstractGraphLoaderStrategyFactory () | 
|   | Destructor.  
  | 
|   | 
 | 
| std::string  | m_factoryKey | 
|   | The key that identifies the concrete factory: it will be used for unregistering the factory during destruction.  
  | 
|   | 
This is the abstract factory for graph loader strategy. 
- See also
 - AbstractGraphLoaderStrategy 
 
Definition at line 48 of file AbstractGraphLoaderStrategyFactory.h.
 
◆ dictionary_type
◆ factory_type
◆ ~AbstractGraphLoaderStrategyFactory()
  
  
      
        
          | virtual te::graph::AbstractGraphLoaderStrategyFactory::~AbstractGraphLoaderStrategyFactory  | 
          ( | 
           | ) | 
           | 
         
       
   | 
  
inlinevirtual   | 
  
 
 
◆ AbstractGraphLoaderStrategyFactory()
  
  
      
        
          | te::graph::AbstractGraphLoaderStrategyFactory::AbstractGraphLoaderStrategyFactory  | 
          ( | 
          const std::string &  | 
          factoryKey | ) | 
           | 
         
       
   | 
  
protected   | 
  
 
Constructor. 
- Parameters
 - 
  
    | factoryKey | The key that identifies the factory.  | 
  
   
 
 
◆ build()
  
  | 
      
   | 
  
protectedpure virtualinherited   | 
  
 
 
◆ create()
◆ find()
◆ getDictionary()
It returns a reference to the internal dictionary of concrete factories. 
The dictionary is a singleton.
- Returns
 - A reference to the internal dictionary. 
 
Definition at line 106 of file AbstractFactory.h.
 
 
◆ getKey()
It returns the factory key associated to the concreate factory. 
- Returns
 - The factory key associated to the concreate factory. 
 
Definition at line 84 of file AbstractFactory.h.
 
 
◆ getType()
  
  
      
        
          | virtual const std::string & te::graph::AbstractGraphLoaderStrategyFactory::getType  | 
          ( | 
           | ) | 
           const | 
         
       
   | 
  
pure virtual   | 
  
 
 
◆ make() [1/3]
It creates and returns default graph loader strategy. 
- Returns
 - A default graph loader strategy.
 
- Note
 - The caller will take the ownership of the returned pointer. 
 
 
 
◆ make() [2/3]
It creates graph loader strategy with the proper type. 
- Parameters
 - 
  
    | lsType | Type The name of the specific graph loader strategy type to be used to create. | 
  
   
- Returns
 - A proper graph loader strategy.
 
- Note
 - The caller will take the ownership of the returned pointer. 
 
 
 
◆ make() [3/3]
It creates graph loader strategy with the proper type. 
- Parameters
 - 
  
    | lsType | Type The name of the specific graph loader strategy type to be used to create.  | 
    | gm | Pointer to a class that defines the graph metadata | 
  
   
- Returns
 - A proper graph loader strategy.
 
- Note
 - The caller will take the ownership of the returned pointer. 
 
 
 
◆ m_factoryKey
The key that identifies the concrete factory: it will be used for unregistering the factory during destruction. 
Definition at line 136 of file AbstractFactory.h.
 
 
The documentation for this class was generated from the following file: