[go: up one dir, main page]

File: fgalist.h

package info (click to toggle)
ftpgrab 0.1.1-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 360 kB
  • ctags: 328
  • sloc: cpp: 2,749; makefile: 59
file content (21 lines) | stat: -rw-r--r-- 405 bytes parent folder | download | duplicates (3)
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.h>
#endif

class FGActionInterface;

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

#endif // _FGALIST_H