~ubuntu-branches/ubuntu/natty/kdenetwork/natty-proposed

« back to all changes in this revision

Viewing changes to .pc/kubuntu_05_samba_sharing.diff/filesharing/advanced/nfs/nfsfile.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-02-21 14:26:58 UTC
  • Revision ID: package-import@ubuntu.com-20110221142658-mzt9flk82tzdunxj
Tags: 4:4.6.0-0ubuntu4
Update kubuntu_05_samba_sharing.diff to match master

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
  Copyright (c) 2004 Jan Schaefer <j_schaef@informatik.uni-kl.de>
 
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 as published by
 
6
  the Free Software Foundation; either version 2 of the License, or
 
7
  (at your option) any later version.
 
8
 
 
9
  This program 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 General Public License for more details.
 
13
 
 
14
  You should have received a copy of the GNU General Public License
 
15
  along with this program; if not, write to the Free Software
 
16
  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
17
 
 
18
*/
 
19
 
 
20
#ifndef NFSFILE_H
 
21
#define NFSFILE_H
 
22
 
 
23
 
 
24
#include <kurl.h>
 
25
#include "nfsentry.h"
 
26
//Added by qt3to4:
 
27
#include <QTextStream>
 
28
#include <Q3PtrList>
 
29
 
 
30
typedef Q3PtrList<NFSEntry> EntryList;
 
31
typedef Q3PtrListIterator<NFSEntry> EntryIterator;
 
32
 
 
33
class QTextStream;
 
34
 
 
35
class NFSFile {
 
36
public:
 
37
  NFSFile(const KUrl & , bool readonly = true);
 
38
  ~NFSFile();
 
39
 
 
40
  void addEntry(NFSEntry *);
 
41
  void removeEntry(NFSEntry *);
 
42
  bool hasEntry(NFSEntry *);
 
43
  NFSEntry* getEntryByPath(const QString &);
 
44
  bool removeEntryByPath(const QString &);
 
45
  EntryIterator getEntries();
 
46
 
 
47
  bool save();
 
48
  bool saveTo(const QString& fileName);
 
49
  void saveTo(QTextStream * stream);  
 
50
  bool load();
 
51
 
 
52
  bool restartNFSServer;
 
53
 
 
54
 
 
55
protected:
 
56
  KUrl _url;
 
57
  bool _readonly;
 
58
  EntryList _entries;
 
59
  NFSLineList _lines;
 
60
};
 
61
 
 
62
#endif