~ubuntu-filemanager-dev/ubuntu-filemanager-app/trunk

« back to all changes in this revision

Viewing changes to src/plugin/folderlistmodel/smb/qsambaclient/src/smbobject.h

  • Committer: Renato Araujo Oliveira Filho
  • Date: 2017-03-16 19:44:37 UTC
  • mto: (588.1.14 new-debian)
  • mto: This revision was merged to the branch mainline in revision 590.
  • Revision ID: renato.filho@canonical.com-20170316194437-e585fr1u2zjob1kd
Revert removal of folderlistmodel plugin.
Install all plugins as private component.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**************************************************************************
 
2
 *
 
3
 * Copyright 2015 Canonical Ltd.
 
4
 * Copyright 2015 Carlos J Mazieri <carlos.mazieri@gmail.com>
 
5
 *
 
6
 * This program is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU Lesser General Public License as published by
 
8
 * the Free Software Foundation; version 3.
 
9
 *
 
10
 * This program is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU Lesser General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU Lesser General Public License
 
16
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
17
 *
 
18
 * File: smbobject.h
 
19
 * Date: 02/01/2015
 
20
 */
 
21
 
 
22
#ifndef SMBOBJECT_H
 
23
#define SMBOBJECT_H
 
24
 
 
25
#include "cleanurl.h"
 
26
 
 
27
#include <QString>
 
28
 
 
29
class SmbUtil;
 
30
typedef SmbUtil const * Const_SmbUtil_Ptr;
 
31
typedef SmbUtil       * SmbUtil_Ptr;
 
32
 
 
33
class SmbObject : public CleanUrl
 
34
{
 
35
protected:
 
36
    SmbObject(const QString &urlPath, Const_SmbUtil_Ptr smb = 0);
 
37
    SmbUtil_Ptr     smbObj() const;
 
38
public:
 
39
    virtual ~SmbObject();
 
40
protected:
 
41
    Const_SmbUtil_Ptr   m_smb;
 
42
    SmbUtil_Ptr         m_smbOwnInstance; //!<  not zero only if smb == 0
 
43
};
 
44
 
 
45
#endif // SMBOBJECT_H