summaryrefslogtreecommitdiff
path: root/src/data/project.cpp
blob: b129dc06d888d65e326c5a3292e0c16bb90ab4f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "project.h"

#include "QDebug"

Project::Project(QObject *parent) : QObject(parent)
{

}

void Project::addStyle(QString name, GraphElementData *properties)
{
    qDebug() << "got style {" << name << "} = [" << properties << "]";
}