File: fgpickallsync.h

package info (click to toggle)
ftpgrab 0.1.5-3
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 436 kB
  • sloc: cpp: 2,906; makefile: 82
file content (28 lines) | stat: -rw-r--r-- 712 bytes parent folder | download | duplicates (10)
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
27
28
#ifndef _FGPICKALLSYNC_H
#define _FGPICKALLSYNC_H

// fgpickallsync.h
//
// Implementation of a file picker that selects all remote files for
// which we do not have local copies

#ifndef _FGFPICKI_H
#include "fgfpicki.h"
#endif

class FGConnectionInterface;

class FGPickAllSync : public FGFilePickerInterface {
public:
  // Must be constructed with connection interface
  FGPickAllSync(FGConnectionInterface* pConnIf);

  virtual FGActionList DecideActions(const FGDirListing& localDir,
                                     const FGDirListing& remoteDir);
private:
  // Banned!
  FGPickAllSync(const FGPickAllSync& other);
  FGPickAllSync& operator=(const FGPickAllSync& other);
};

#endif // _FGPICKALLSYNC_H