https://github.com/NeuroanatomyAndConnectivity/vidview
Raw File
Tip revision: a08f8878e4d91ae2d7a73ffc20168146eac1c29e authored by boettger on 04 March 2013, 18:09:51 UTC
ROI & connectivity drawing
Tip revision: a08f887
surfacecollection.h
#ifndef SURFACECOLLECTION_H
#define SURFACECOLLECTION_H

#include "connectivity.h"
#include "surfaceset.h"

class SurfaceCollection
{
public:
    SurfaceCollection(QString consname, SurfaceSet* l, SurfaceSet* r, float clipthr);

    Connectivity* conn;
    IndexedConnections* icons;
    SurfaceSet* lset;
    SurfaceSet* rset;
};

#endif // SURFACECOLLECTION_H
back to top