(svn r25354) -Add: link graph schedule and typedefs for LinkGraph and related classes

This commit is contained in:
fonsinchen
2013-06-09 12:58:37 +00:00
parent 22f56ffdd7
commit c32eea02dd
13 changed files with 361 additions and 0 deletions

27
src/linkgraph/init.h Normal file
View File

@@ -0,0 +1,27 @@
/** @file init.h Declaration of initializing link graph handler. */
#ifndef INIT_H
#define INIT_H
#include "linkgraphjob_base.h"
/**
* Stateless, thread safe initialization hander. Initializes node and edge
* annotations.
*/
class InitHandler : public ComponentHandler {
public:
/**
* Initialize the link graph job.
* @param job Job to be initialized.
*/
virtual void Run(LinkGraphJob &job) const { job.Init(); }
/**
* Virtual destructor has to be defined because of virtual Run().
*/
virtual ~InitHandler() {}
};
#endif /* INIT_H */