defuze.me  Client
parameterspage.cpp
00001 /**************************************************************************
00002 ** defuze.me Epitech Innovative Project
00003 **
00004 ** Copyright 2010-2011
00005 **   Athena Calmettes - Jocelyn De La Rosa - Francois Gaillard
00006 **   Adrien Jarthon - Alexandre Moore - Luc Peres - Arnaud Sellier
00007 **
00008 ** All rights reserved.
00009 **************************************************************************/
00010 
00011 #include "parameterspage.hpp"
00012 
00013 using namespace Gui;
00014 
00015 ParametersPage::ParametersPage(const QString &title, const QString &category, QWidget *parent) :
00016     QWidget(parent), title(title), category(category)
00017 {
00018     path = title;
00019 }
00020 
00021 const QString &ParametersPage::getPath() const
00022 {
00023     return path;
00024 }
00025 
00026 const QString &ParametersPage::getTitle() const
00027 {
00028     return title;
00029 }
00030 
00031 const QString &ParametersPage::getCategory() const
00032 {
00033     return category;
00034 }