~bilalakhtar/unity/software-center-integration-for-o

« back to all changes in this revision

Viewing changes to plugins/unityshell/src/DashViewPrivate.h

  • Committer: Bilal Akhtar
  • Date: 2012-01-15 14:03:49 UTC
  • mfrom: (1346.2.488 unity)
  • Revision ID: bilalakhtar@ubuntu.com-20120115140349-mht4dke0occbsyra
MergeĀ fromĀ trunk

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: Marco Biscaro <marcobiscaro2112@gmail.com>
 
17
 */
 
18
 
 
19
#ifndef UNITY_DASH_VIEW_PRIVATE_H_
 
20
#define UNITY_DASH_VIEW_PRIVATE_H_
 
21
 
 
22
#include <string>
 
23
#include <map>
 
24
 
 
25
namespace unity
 
26
{
 
27
namespace dash
 
28
{
 
29
namespace impl
 
30
{
 
31
 
 
32
struct LensFilter
 
33
{
 
34
  std::string id;
 
35
  std::map<std::string, std::string> filters;
 
36
};
 
37
 
 
38
LensFilter parse_lens_uri(std::string const& uri);
 
39
 
 
40
} // namespace impl
 
41
} // namespace dash
 
42
} // namespace unity
 
43
 
 
44
#endif