~chipaca/unity-lens-music/dont-force-us

« back to all changes in this revision

Viewing changes to src/filter-parser-decade.vala

  • Committer: Neil Jagdish Patel
  • Author(s): Alex Launi
  • Date: 2011-09-15 18:08:53 UTC
  • mfrom: (41.1.5 musicstore)
  • Revision ID: neil.patel@canonical.com-20110915180853-hc7natia0x01nwap
Merge in initial support for searching one.ubuntu.com for music to purchase

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2011 Canonical Ltd
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License version 3 as
 
6
 * published by the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Authored by Alex Launi <alex.launi@canonical.com>
 
17
 *
 
18
 */
 
19
 
 
20
using GLib;
 
21
 
 
22
namespace Unity.MusicLens {
 
23
  
 
24
  public class DecadeFilterParser : FilterParser
 
25
  {
 
26
    public DecadeFilterParser (MultiRangeFilter filter)
 
27
    {
 
28
      base (filter);
 
29
    }
 
30
 
 
31
    public override string parse ()
 
32
    {
 
33
      return "";
 
34
    }
 
35
 
 
36
    protected override string id { get { return "decade"; } }
 
37
  }
 
38
}
 
 
b'\\ No newline at end of file'