Changeset 2218dca for molecuilder


Ignore:
Timestamp:
Jul 23, 2009, 9:11:01 AM (16 years ago)
Author:
Frederik Heber <heber@…>
Children:
09f4dc
Parents:
f23d7d (diff), 650212 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'GraphRefactoring'

Location:
molecuilder/src
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/graph.cpp

    rf23d7d r2218dca  
    77using namespace std;
    88
     9#include "graph.hpp"
    910
    10 #include <iostream>
    11 #include <list>
    12 #include <vector>
     11/***************************************** Implementations for graph classes ********************************/
    1312
    14 /***************************************** Functions for class graph ********************************/
     13/** Constructor of class Graph.
     14 */
     15Graph::Graph()
     16{
     17};
    1518
     19/** Destructor of class Graph.
     20 * Destructor does release memory for nodes and edges contained in its lists as well.
     21 */
     22Graph::~Graph()
     23{
     24};
    1625
    17  
     26/** Constructor of class SubGraph.
     27 */
     28SubGraph::SubGraph()
     29{
     30};
     31
     32/** Destructor of class SubGraph.
     33 * Note that destructor does not deallocate either nodes or edges! (this is done by its subgraph!)
     34 */
     35SubGraph::~SubGraph()
     36{
     37};
     38
     39/** Constructor of class Node.
     40 */
     41Node::Node()
     42{
     43};
     44
     45/** Destructor of class Node.
     46 */
     47Node::~Node()
     48{
     49};
     50
     51/** Constructor of class Edge.
     52 */
     53Edge::Edge()
     54{
     55};
     56
     57/** Destructor of class Edge.
     58 */
     59Edge::~Edge()
     60{
     61};
     62
Note: See TracChangeset for help on using the changeset viewer.