File: fgalist.h

package info (click to toggle)
ftpgrab 0.1.5-4
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 444 kB
  • ctags: 358
  • sloc: cpp: 2,906; makefile: 102
file content (21 lines) | stat: -rw-r--r-- 408 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef _FGALIST_H
#define _FGALIST_H

// fgalist.h
//
// FGActionList - details actions to be taken (if any) to satisfy
// a given grab rule e.g. fetch file A, delete file B

#ifndef __SGI_STL_VECTOR_H
#include <vector>
#endif

class FGActionInterface;

class FGActionList : public std::vector<FGActionInterface*> {
public:
  void DoActions(void) const;
  void FreeResources(void);
};

#endif // _FGALIST_H