~ubuntu-branches/ubuntu/saucy/knemo/saucy

« back to all changes in this revision

Viewing changes to src/knemod/syncstats/statsfactory.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2010-06-15 18:58:30 UTC
  • mfrom: (1.1.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20100615185830-2zeqn9vpn3jjx6gd
Tags: 0.6.3-1
* New upstream release 
  - Fixes (LP: #559683, LP: #248294)
  - save changes to traffic threshold setting
  - add option to report traffic rate in bit/s
  - update the signal plotter from KDE SC 4.4 branch; a few minor plotter
    config options were dropped as a result
  - on startup sync recent traffic statistics with vnstat if it's available;
    this should help KNemo account for traffic between sessions
  - fix possible hang when text icon theme uses fixed fonts

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* This file is part of KNemo
 
2
   Copyright (C) 2010 John Stamp <jstamp@users.sourceforge.net>
 
3
 
 
4
   KNemo is free software; you can redistribute it and/or modify
 
5
   it under the terms of the GNU Library General Public License as
 
6
   published by the Free Software Foundation; either version 2 of
 
7
   the License, or (at your option) any later version.
 
8
 
 
9
   KNemo is distributed in the hope that it will be useful,
 
10
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
   GNU Library General Public License for more details.
 
13
 
 
14
   You should have received a copy of the GNU Library General Public License
 
15
   along with this library; see the file COPYING.LIB.  If not, write to
 
16
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
17
   Boston, MA 02110-1301, USA.
 
18
*/
 
19
 
 
20
#ifndef STATSFACTORY_H
 
21
#define STATSFACTORY_H
 
22
 
 
23
#include "externalstats.h"
 
24
 
 
25
class StatsFactory
 
26
{
 
27
    public:
 
28
       static ExternalStats * stats( Interface * i );
 
29
};
 
30
 
 
31
#endif