site.cpp   [plain text]


/*   Copyright (c) AT&T Corp.  All rights reserved.
   
This software may only be used by you under license from 
AT&T Corp. ("AT&T").  A copy of AT&T's Source Code Agreement 
is available at AT&T's Internet website having the URL 

http://www.research.att.com/sw/tools/graphviz/license/

If you received this software without first entering into a license 
with AT&T, you have an infringing copy of this software and cannot 
use it without violating AT&T's intellectual property rights. */

#include "voronoi/info.h"

namespace Voronoi {


Site *Sites::getsite() {
    return fsites.alloc();
}

void Sites::makevertex(Site *v) {
    v -> sitenbr = nvertices++;
}


void Sites::deref(Site *v) {
    v -> refcnt -= 1;
    if (v -> refcnt == 0 ) 
		fsites.free(v);
}

void Sites::ref(Site *v) {
    v -> refcnt += 1;
}

} // namespace Voronoi