Ubuntu Pastebin

Paste from mcintire-evan at Thu, 17 Dec 2015 13:48:58 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
namespace shortcut
{                                                                 
namespace
{
    const std::string GNOME_MEDIA_SETTINGS = "org.gnome.settings-d
aemon.plugins.media-keys";
    DECLARE_LOGGER(logger, "unity.shortcut");
}
// Ctor
Hint::Hint(std::string const& category,
           std::string const& prefix,
           std::string const& postfix,
           std::string const& description,
           OptionType const type,
           std::string const& arg1,
           std::string const& arg2,
           std::string const& arg3)
  : AbstractHint(category, prefix, postfix, description, type, arg
1, arg2, arg3)                                                    
{
}
                                                                  
// Dtor
Hint::~Hint()                                                     
{
}
Download as text