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
indexedconnections.h
#ifndef INDEXEDCONNECTIONS_H
#define INDEXEDCONNECTIONS_H

#include "qlist.h"
#include "qstring.h"

class IndexedConnections
{
public:
    IndexedConnections();
    IndexedConnections(QString filename);
    QList<int> fs;
    QList<int> ts;
    QList<float> vs;
    int length();
    void add(int f, int t, float v);
    void loadTxt(QString filename);
    void saveBin(QString filename);
    void loadBin(QString filename);
};

#endif // INDEXEDCONNECTIONS_H
back to top